Files
home/Projects/kompose/docs/nginx.conf

12 lines
153 B
Nginx Configuration File
Raw Normal View History

2025-10-09 04:52:21 +02:00
http {
server {
listen 80 default_server;
2025-10-09 04:36:44 +02:00
2025-10-09 04:52:21 +02:00
root /usr/share/nginx/html;
location / {
2025-10-09 04:36:44 +02:00
try_files $uri $uri/ /index.html;
2025-10-08 13:54:19 +02:00
}
2025-10-09 04:52:21 +02:00
}
2025-10-08 13:54:19 +02:00
}