mirror of
https://github.com/stakater/Reloader.git
synced 2026-02-14 18:09:50 +00:00
12 lines
244 B
Plaintext
12 lines
244 B
Plaintext
server {
|
|
listen 8080;
|
|
root /usr/share/nginx/html/;
|
|
index index.html;
|
|
error_page 403 404 /404.html;
|
|
location = /404.html {
|
|
internal;
|
|
}
|
|
# redirects issued by nginx will be relative
|
|
absolute_redirect off;
|
|
}
|