Spaces:
Runtime error
Runtime error
| 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; | |
| } | |