dashboard/deployment/nginx.conf

17 lines
276 B
Nginx Configuration File
Raw Normal View History

2021-09-27 12:17:33 +02:00
events {
worker_connections 10000;
}
http {
server {
listen [::]:80 default_server;
listen 80;
root /usr/share/nginx/html;
include /etc/nginx/mime.types;
location / {
try_files $uri /index.html;
}
}
}