[NGINX conf] Fix PHP files being served as files.

This commit is contained in:
Diogo Cordeiro 2019-05-29 13:14:11 +01:00
parent 4ca32628f7
commit bb175f3d4e
1 changed files with 26 additions and 21 deletions

View File

@ -2,7 +2,7 @@ server {
listen [::]:80;
listen 80;
# FIXME: change domain name here (and also make sure you do the same in the next 'server' section)
# FIXME: Change domain name here (and also make sure you do the same in the next 'server' section)
server_name social.example.org;
# redirect all traffic to HTTPS
@ -10,30 +10,27 @@ server {
}
server {
# HTTPS is mandatory on GNU social unless you are using Tor network. Seriously. Set it up with a cert (any cert) before you run the install.
# HTTPS is mandatory on GNU social unless you are using Tor network. Seriously.
# Set it up with a cert (any cert) before you run the install.
listen [::]:443 ssl http2;
listen 443 ssl http2;
# Root
# Change the path below to where you installed
# GNU social
# FIXME: Change the path below to where you installed GNU social
root /path/to/gnusocial/root;
# Server name
# Change "social.example.org" to your site's domain name
# FIXME: Change "social.example.org" to your site's domain name
# GNU social MUST be installed in the domain root
server_name social.example.org;
# SSL
# Uncomment and change the paths to setup
# your SSL key/cert. See https://cipherli.st/
# for more information
# FIXME: Change the paths to setup your SSL key/cert. See https://cipherli.st/ for more information
ssl_certificate ssl/certs/social.example.org.crt;
ssl_certificate_key ssl/private/social.example.org.key;
# Logs
# Uncomment and change the paths to setup
# logging
# FIXME: Uncomment and change the paths to setup logging
# access_log /path/to/access.log;
# error_log /path/to/error.log;
@ -41,7 +38,7 @@ server {
index index.php;
# PHP
location /index.php {
location ~ /index.php {
include fastcgi_params;
include snippets/fastcgi-php.conf;
@ -58,6 +55,13 @@ server {
# http2_push_preload on;
}
# Don't allow any PHP file other than index.php to be executed
# This will ensure that nor config.php nor plugin files with eventual hardcoded security information are downloadable
# And this is better than allowing php files to be executed in case of forgotten `if (!defined('GNUSOCIAL')) { exit(1); }`
location ~ \.php$ {
deny all;
}
# Location
location / {
try_files $uri $uri/ @index_handler;
@ -97,3 +101,4 @@ server {
# log_not_found off;
# }
}