-
Notifications
You must be signed in to change notification settings - Fork 0
Forge Web Server nginx rules
Christopher Fraser edited this page Feb 5, 2022
·
6 revisions
Creating a site as a Static HTML
site no longer changes the nginx rules to focus on html
files. Replace the lines in each the nginx file with the corresponding lines in the code blocks below.
server_name .hypercontext.com .hypercontext.dev .soapboxhq.com;
root /home/forge/hypercontext.com/web/current/dist-production;
# add_header X-Frame-Options "SAMEORIGIN";
add_header X-XSS-Protection "1; mode=block";
add_header X-Content-Type-Options "nosniff";
index index.html index.htm index.php;
charset utf-8;
# FORGE CONFIG (DO NOT REMOVE!)
include forge-conf/hypercontext.com/server/*;
location / {
try_files $uri $uri/ /index.html;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
access_log off;
error_log /var/log/nginx/hypercontext.com-error.log error;
# error_page 404 /index.php;
location ~ /\.(?!well-known).* {
deny all;
}