This repository has been archived on 2025-10-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
dashboard/deployment/nginx.conf
2021-09-27 12:17:33 +02:00

16 lines
276 B
Nginx Configuration File

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;
}
}
}