Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1 | # Default server configuration |
2 | server { | ||||
3 | listen 80 default_server; | ||||
4 | listen [::]:80 default_server; | ||||
5 | |||||
6 | root /var/www/localhost/html; | ||||
7 | |||||
8 | index index.html index.htm; | ||||
9 | |||||
10 | server_name _; | ||||
11 | |||||
12 | # redirect server error pages to the static page /50x.html | ||||
13 | error_page 500 502 503 504 /50x.html; | ||||
14 | } |