MEDICAL / nginx.conf
VIATEUR-AI's picture
Create nginx.conf
ae89f36 verified
raw
history blame contribute delete
373 Bytes
server {
listen 7860;
server_name localhost;
root /usr/share/nginx/html;
index index.html index.htm;
location / {
try_files $uri $uri/ /index.html;
}
# Cache static assets
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot|mp4|webm)$ {
expires 1y;
add_header Cache-Control "public, immutable";
}