mirror of
https://github.com/jimeh/skyhook.git
synced 2026-02-19 11:06:38 +00:00
15 lines
270 B
Plaintext
Executable File
15 lines
270 B
Plaintext
Executable File
server {
|
|
listen 80 default;
|
|
server_name _;
|
|
|
|
server_name_in_redirect off;
|
|
|
|
location / {
|
|
index index.html index.htm;
|
|
root /var/www/maintenance/htdocs;
|
|
}
|
|
error_page 500 502 503 504 /50x.html;
|
|
location = /50x.html {
|
|
root /var/www/maintenance/htdocs;
|
|
}
|
|
} |