Files
FACULTATE-HEALTHCARE_MANAGER/frontend/nginx.conf
T
2024-05-30 15:40:13 +03:00

19 lines
318 B
Nginx Configuration File

events { }
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
server {
listen 5023;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}
}