pse-podcast-synchronisation/pse-dashboard/conf.d/nginx.conf

12 lines
166 B
Nginx Configuration File
Raw Permalink Normal View History

2024-06-19 00:14:49 +02:00
server {
listen 80;
server_name pse-frontend;
location / {
root /usr/share/nginx/html/;
try_files $uri $uri/ /index.html =404;
}
}