Files
fast_api_template/frontend/nginx.conf
T

12 lines
188 B
Nginx Configuration File
Raw Normal View History

2023-12-04 17:09:14 -05:00
server {
listen 80;
2024-03-08 19:23:54 +01:00
2023-12-04 17:09:14 -05:00
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri /index.html =404;
2023-12-04 17:09:14 -05:00
}
2024-03-08 19:23:54 +01:00
2023-12-04 17:09:14 -05:00
include /etc/nginx/extra-conf.d/*.conf;
}