2015-07-25 14:37:10 +01:00
|
|
|
server {
|
2019-05-11 20:04:18 +01:00
|
|
|
listen [::]:80;
|
|
|
|
listen 80;
|
2015-12-27 22:58:10 +00:00
|
|
|
|
2019-05-29 13:14:11 +01:00
|
|
|
# FIXME: Change domain name here (and also make sure you do the same in the next 'server' section)
|
2019-05-11 20:04:18 +01:00
|
|
|
server_name social.example.org;
|
2015-12-27 22:58:10 +00:00
|
|
|
|
2019-05-11 20:04:18 +01:00
|
|
|
# redirect all traffic to HTTPS
|
|
|
|
rewrite ^ https://$host$request_uri? permanent;
|
2015-12-27 22:58:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
server {
|
2019-05-29 13:14:11 +01:00
|
|
|
# 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.
|
2019-05-11 20:04:18 +01:00
|
|
|
listen [::]:443 ssl http2;
|
|
|
|
listen 443 ssl http2;
|
2015-07-25 14:37:10 +01:00
|
|
|
|
2019-05-11 20:04:18 +01:00
|
|
|
# Root
|
2019-08-06 01:43:42 +01:00
|
|
|
# FIXME: Change the path below to where you installed GNU social (GNU social's root + /public)
|
|
|
|
root /var/www/gnusocial/public;
|
2015-07-25 14:37:10 +01:00
|
|
|
|
2019-05-11 20:04:18 +01:00
|
|
|
# Server name
|
2019-05-29 13:14:11 +01:00
|
|
|
# FIXME: Change "social.example.org" to your site's domain name
|
2019-05-11 20:04:18 +01:00
|
|
|
server_name social.example.org;
|
2015-07-25 14:37:10 +01:00
|
|
|
|
2019-05-11 20:04:18 +01:00
|
|
|
# SSL
|
2019-05-29 13:14:11 +01:00
|
|
|
# FIXME: Change the paths to setup your SSL key/cert. See https://cipherli.st/ for more information
|
2019-05-11 20:04:18 +01:00
|
|
|
ssl_certificate ssl/certs/social.example.org.crt;
|
|
|
|
ssl_certificate_key ssl/private/social.example.org.key;
|
2015-07-25 14:37:10 +01:00
|
|
|
|
2019-05-11 20:04:18 +01:00
|
|
|
# Index
|
|
|
|
index index.php;
|
2015-07-25 14:37:10 +01:00
|
|
|
|
2019-08-04 20:14:45 +01:00
|
|
|
# X-Accel/X-Sendfile. Still needs to be enabled in the config
|
|
|
|
location /file {
|
|
|
|
internal;
|
|
|
|
# FIXME: Change "/path/to/gnusocial/root/" to the folder where
|
|
|
|
# attachments are stored (normally the same as the site root)
|
|
|
|
root /path/to/gnusocial/root/;
|
|
|
|
}
|
|
|
|
|
2019-05-11 20:04:18 +01:00
|
|
|
# PHP
|
2020-03-12 18:03:48 +00:00
|
|
|
# FIXME: Change "php7.X" to your version of fpm
|
2019-08-06 01:43:42 +01:00
|
|
|
location ~ ^/(index|install)\.php(/.*)?$ {
|
2019-07-26 18:29:41 +01:00
|
|
|
#location ^~ /index.php {
|
2019-05-11 20:04:18 +01:00
|
|
|
include fastcgi_params;
|
2015-12-27 22:58:10 +00:00
|
|
|
|
2019-11-01 05:52:21 +00:00
|
|
|
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
|
|
|
set $path_info $fastcgi_path_info;
|
|
|
|
try_files $fastcgi_script_name =404;
|
|
|
|
|
|
|
|
fastcgi_pass unix:/run/php/php7.X-fpm.sock;
|
|
|
|
fastcgi_index index.php;
|
|
|
|
|
|
|
|
fastcgi_param PATH_INFO $path_info;
|
|
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
2019-05-29 13:14:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# 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;
|
2019-05-11 20:04:18 +01:00
|
|
|
}
|
2015-07-25 14:37:10 +01:00
|
|
|
|
2019-05-11 20:04:18 +01:00
|
|
|
# Location
|
|
|
|
location / {
|
|
|
|
try_files $uri $uri/ @index_handler;
|
|
|
|
}
|
2015-07-25 14:37:10 +01:00
|
|
|
|
2019-05-11 20:04:18 +01:00
|
|
|
# Fancy URLs
|
|
|
|
error_page 404 @index_handler;
|
|
|
|
location @index_handler {
|
|
|
|
rewrite ^(.*)$ /index.php?p=$1 last;
|
|
|
|
}
|
2015-12-27 22:58:10 +00:00
|
|
|
|
2019-05-11 20:04:18 +01:00
|
|
|
# Restrict access that is unnecessary anyway
|
|
|
|
location ~ /\.(ht|git) {
|
|
|
|
deny all;
|
|
|
|
}
|
2015-07-25 14:37:10 +01:00
|
|
|
|
2019-05-11 20:04:18 +01:00
|
|
|
#
|
|
|
|
# Hardening (optional)
|
|
|
|
#
|
|
|
|
# add_header Strict-Transport-Security "max-age=15768000; preload;";
|
|
|
|
# add_header X-Content-Type-Options nosniff;
|
|
|
|
# add_header Referrer-Policy strict-origin-when-cross-origin;
|
|
|
|
# add_header Content-Security-Policy "default-src 'self' 'unsafe-inline'; frame-ancestors 'self'; form-action 'self'; style-src 'self' 'unsafe-inline'; img-src * blob: data:;";
|
|
|
|
# add_header X-Permitted-Cross-Domain-Policies none;
|
|
|
|
# add_header X-Robots-Tag all; # Not really hardening, just here for strictness purposes
|
|
|
|
#
|
|
|
|
# client_max_body_size 15M;
|
|
|
|
# client_body_buffer_size 128k;
|
|
|
|
# gzip_vary on;
|
|
|
|
#
|
|
|
|
# location ~* \.(?:css|js|woff|svg|gif|png|webp|ttf|ico|jpe?g)$ {
|
|
|
|
# gzip on;
|
|
|
|
# gzip_comp_level 4;
|
|
|
|
# add_header Cache-Control "public";
|
|
|
|
# expires 30d;
|
|
|
|
# access_log off;
|
|
|
|
# log_not_found off;
|
|
|
|
# }
|
|
|
|
}
|