pse-podcast-synchronisation/pse-dashboard/conf.d/nginx.conf
2024-06-27 12:11:14 +02:00

12 lines
166 B
Nginx Configuration File

server {
listen 80;
server_name pse-frontend;
location / {
root /usr/share/nginx/html/;
try_files $uri $uri/ /index.html =404;
}
}