前提・実現したいこと
以下のような、ローカルPCにあるtest1.rbをcurlで呼びたいのですが、エラーがでてしまいます。
原因をご教授いただけませんでしょうか。
発生している問題・エラーメッセージ
$ curl localhost/Users/***/Desktop/***/***/test1.rb?a=hoge curl: (7) Failed to connect to localhost port 80: Connection refused
該当のソースコード
test1.rb
ruby
1require "cgi" 2 3cgi = CGI.new() 4a = cgi["a"] 5 6puts a 7
試したこと
curl localhost/Users/***/Desktop/***/***/test1.rb?a=hoge
curl 127.0.0.1:80/Users/***/Desktop/***/***/test1.rb?a=hoge
curl http://127.0.0.1:80/Users/***/Desktop/***/***/test1.rb?a=hoge
全て同じエラーが出ました。
回答2件
あなたの回答
tips
プレビュー