mirror of
https://github.com/hhftechnology/Dock-Dploy.git
synced 2025-12-05 19:06:56 -06:00
16 lines
311 B
Nginx Configuration File
16 lines
311 B
Nginx Configuration File
server {
|
|
listen 3000;
|
|
server_name localhost;
|
|
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg)$ {
|
|
expires 1y;
|
|
add_header Cache-Control "public, immutable";
|
|
}
|
|
} |