mirror of
https://github.com/Gar-b-age/CookLikeHOC.git
synced 2026-03-22 12:57:16 +08:00
12 lines
289 B
Plaintext
12 lines
289 B
Plaintext
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
root /usr/share/nginx/html;
|
|
|
|
location / {
|
|
index index.html index.htm;
|
|
try_files $uri $uri/ /index.html;
|
|
|
|
add_header Cache-Control "private, no-store, no-cache, must-revalidate, proxy-revalidate";
|
|
}
|
|
} |