2018-04-08 15:15:04 +00:00
|
|
|
# default nginx site config for Pleroma
|
|
|
|
#
|
|
|
|
# Simple installation instructions:
|
|
|
|
# 1. Install your TLS certificate, possibly using Let's Encrypt.
|
|
|
|
# 2. Replace 'example.tld' with your instance's domain wherever it appears.
|
|
|
|
# 3. Copy this file to /etc/nginx/sites-available/ and then add a symlink to it
|
|
|
|
# in /etc/nginx/sites-enabled/ and restart nginx.
|
|
|
|
|
2017-12-11 01:40:19 +00:00
|
|
|
proxy_cache_path /tmp/pleroma-media-cache levels=1:2 keys_zone=pleroma_media_cache:10m max_size=10g
|
|
|
|
inactive=720m use_temp_path=off;
|
|
|
|
|
2017-08-07 23:41:36 +00:00
|
|
|
server {
|
2018-04-08 15:15:04 +00:00
|
|
|
listen 80;
|
|
|
|
server_name example.tld;
|
|
|
|
return 301 https://$server_name$request_uri;
|
2017-08-07 23:41:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
server {
|
2018-03-28 09:34:08 +00:00
|
|
|
listen 443 ssl http2;
|
2017-08-07 23:41:36 +00:00
|
|
|
ssl on;
|
|
|
|
ssl_session_timeout 5m;
|
|
|
|
|
2018-04-08 15:15:04 +00:00
|
|
|
ssl_certificate /etc/letsencrypt/live/example.tld/fullchain.pem;
|
2017-08-07 23:41:36 +00:00
|
|
|
ssl_certificate_key /etc/letsencrypt/live/example.tld/privkey.pem;
|
|
|
|
|
2017-08-15 21:25:26 +00:00
|
|
|
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
|
2017-08-07 23:41:36 +00:00
|
|
|
ssl_ciphers "HIGH:!aNULL:!MD5 or HIGH:!aNULL:!MD5:!3DES";
|
|
|
|
ssl_prefer_server_ciphers on;
|
|
|
|
|
|
|
|
server_name example.tld;
|
|
|
|
|
2018-04-08 15:15:04 +00:00
|
|
|
gzip_vary on;
|
|
|
|
gzip_proxied any;
|
|
|
|
gzip_comp_level 6;
|
|
|
|
gzip_buffers 16 8k;
|
|
|
|
gzip_http_version 1.1;
|
|
|
|
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript application/activity+json application/atom+xml;
|
|
|
|
|
|
|
|
# the nginx default is 1m, not enough for large media uploads
|
|
|
|
client_max_body_size 16m;
|
|
|
|
|
2017-08-07 23:41:36 +00:00
|
|
|
location / {
|
2018-04-01 06:25:33 +00:00
|
|
|
# if you do not want remote frontends to be able to access your Pleroma backend
|
|
|
|
# server, remove these lines.
|
|
|
|
add_header 'Access-Control-Allow-Origin' '*' always;
|
|
|
|
add_header 'Access-Control-Allow-Methods' 'POST, GET, OPTIONS' always;
|
|
|
|
add_header 'Access-Control-Allow-Headers' 'Authorization, Content-Type' always;
|
|
|
|
if ($request_method = OPTIONS) {
|
|
|
|
return 204;
|
|
|
|
}
|
|
|
|
# stop removing lines here.
|
|
|
|
|
2017-12-07 18:07:51 +00:00
|
|
|
proxy_http_version 1.1;
|
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
proxy_set_header Connection "upgrade";
|
2018-03-08 18:00:59 +00:00
|
|
|
proxy_set_header Host $http_host;
|
|
|
|
|
2017-08-07 23:41:36 +00:00
|
|
|
proxy_pass http://localhost:4000;
|
2018-04-08 15:15:04 +00:00
|
|
|
|
|
|
|
client_max_body_size 16m;
|
2017-08-07 23:41:36 +00:00
|
|
|
}
|
2017-12-11 01:40:19 +00:00
|
|
|
|
|
|
|
location /proxy {
|
|
|
|
proxy_cache pleroma_media_cache;
|
|
|
|
proxy_cache_lock on;
|
|
|
|
proxy_pass http://localhost:4000;
|
|
|
|
}
|
|
|
|
}
|