Files
.profile/site/nginx.conf
T
krosh 4058b9a596
Build site container / build (push) Canceled after 0s
add simple site with container
2026-08-16 03:23:20 +03:00

26 lines
404 B
Nginx Configuration File

server {
listen 8080;
listen [::]:8080;
server_name _;
root /usr/share/nginx/html;
server_tokens off;
absolute_redirect off;
location = / {
try_files /index.html =404;
}
location = /index.html {
return 308 /;
}
location / {
try_files $uri $uri/ @mainpage;
}
location @mainpage {
try_files /index.html =404;
}
}