mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
20 lines
391 B
Plaintext
20 lines
391 B
Plaintext
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
location ~* \.(?:css|js|map|jpe?g|gif|png|svg|woff|ico)$ { }
|
|
|
|
location / {
|
|
if (-f $document_root/index.html) {
|
|
return 503;
|
|
}
|
|
}
|
|
error_page 503 @maintenance;
|
|
location @maintenance {
|
|
rewrite ^(.*)$ /index.html break;
|
|
}
|
|
}
|