Files
rubic-cube/nginx.conf
Grzegorz Kucmierz 9272bd9c7d
Some checks failed
Build and Publish Docker Image / build (push) Has been cancelled
Add Dockerfile, nginx config, Gitea workflow and docker-compose
2026-02-15 20:14:58 +01:00

16 lines
318 B
Nginx Configuration File

server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}