2025-06-13 08:37:01 -06:00
|
|
|
server {
|
2025-06-13 14:33:06 -06:00
|
|
|
listen 8080;
|
2025-06-13 08:37:01 -06:00
|
|
|
server_name localhost;
|
2025-06-20 08:06:32 -05:00
|
|
|
include mime.types;
|
2025-06-13 08:37:01 -06:00
|
|
|
|
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
|
|
2025-06-13 22:05:37 -06:00
|
|
|
add_header X-Weatherstar true always;
|
|
|
|
|
|
2025-06-13 08:37:01 -06:00
|
|
|
location / {
|
2025-06-13 14:33:06 -06:00
|
|
|
index redirect.html index.html index.htm;
|
2025-06-13 08:37:01 -06:00
|
|
|
try_files $uri $uri/ =404;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
location /music/ {
|
|
|
|
|
autoindex on;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
error_page 500 502 503 504 /50x.html;
|
|
|
|
|
location = /50x.html {
|
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
|
}
|
|
|
|
|
}
|