19 lines
300 B
Plaintext
19 lines
300 B
Plaintext
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name example.com www.example.com;
|
|
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
|
|
location = /50x.html {
|
|
internal;
|
|
}
|
|
|
|
error_page 500 502 503 504 /50x.html;
|
|
}
|