nginxで簡単なhttpサーバーを構築しているのですが、以下のコードのlocationのうち上2つしかマッチしません。
example.comとexample.com/static/css/style.cssなどには問題なくアクセスできるのですが、example.com/page1などにアクセスすると404エラーが返されます。
conf
1root /[full path]; 2 3location / { 4 index index.html; 5} 6 7location /static { 8 alias static 9} 10 11location /page1 { 12 index pages/page1.html; 13}
error.logを見てみると、
"/[full path]/page1" failed (2: No such file or directory),
のように出力されていて、どうやらlocationにマッチしていないようです。
問題の原因、あるいは解決法を教えていただけると幸いです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/26 10:35