mirror of
https://github.com/lemeow125/Notes.git
synced 2024-11-17 04:09:26 +08:00
13 lines
No EOL
310 B
Nginx Configuration File
13 lines
No EOL
310 B
Nginx Configuration File
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;
|
|
}
|
|
} |