Spaces:
Runtime error
Runtime error
File size: 495 Bytes
37b04a8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
server {
listen 80;
listen [::]:80;
server_name localhost;
# エラーログの設定
error_log /var/log/nginx/error.log warn;
location / {
# ドキュメントルートの指定
root /usr/share/nginx/html;
index index.html index.htm;
# 必要に応じてアクセス権の調整(自動インデックス表示を有効化)
autoindex on;
}
# 404エラーを200で返す設定
error_page 404 =200 /index.html;
}
|