Using nginx SSI, building theme.
This commit is contained in:
parent
ce1bda0afd
commit
bd1ff485f2
7 changed files with 132 additions and 10 deletions
30
.volumes/nginx/conf/conf.d/default.conf
Normal file
30
.volumes/nginx/conf/conf.d/default.conf
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name localhost;
|
||||
|
||||
#access_log /var/log/nginx/host.access.log main;
|
||||
|
||||
root /usr/share/nginx/public;
|
||||
|
||||
location / {
|
||||
index index.html;
|
||||
ssi on;
|
||||
try_files $uri $uri/ $uri.html =404;
|
||||
}
|
||||
|
||||
# location /includes/ {
|
||||
# deny all;
|
||||
# return 404;
|
||||
# }
|
||||
|
||||
error_page 404 /404.html;
|
||||
location = /404.html {
|
||||
root /usr/share/nginx/public;
|
||||
}
|
||||
|
||||
error_page 500 502 503 504 /50x.html;
|
||||
location = /50x.html {
|
||||
root /usr/share/nginx/html;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue