mirror of
https://github.com/Lissy93/dashy.git
synced 2024-11-22 11:42:25 +03:00
15 lines
271 B
Nginx Configuration File
15 lines
271 B
Nginx Configuration File
worker_processes 4;
|
|
|
|
events { worker_connections 1024; }
|
|
|
|
http {
|
|
server {
|
|
listen 80;
|
|
root /usr/share/nginx/html;
|
|
include /etc/nginx/mime.types;
|
|
|
|
location /appui {
|
|
try_files $uri /index.html;
|
|
}
|
|
}
|
|
} |