Evo.Internal/nginx.conf
2024-07-14 21:21:51 +03:00

8 lines
149 B
Nginx Configuration File

server {
listen 3000;
location / {
root /usr/share/nginx/html;
try_files $uri $uri/ /index.html =404;
}
}