Notes/nginx/nginx.conf

13 lines
310 B
Nginx Configuration File
Raw Normal View History

2024-10-17 14:49:30 +08:00
server {
listen 80;
sendfile on;
default_type application/octet-stream;
server_name angularfrontend.lemnsea-fab4664b.westus3.azurecontainerapps.io;
gzip on;
root /usr/share/nginx/html/dist/simpledmca-web/browser;
location / {
try_files $uri $uri/ /index.html =404;
}
}