diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2022-11-11 15:15:25 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2022-11-11 15:15:25 -0800 |
commit | 1e2e1ddc47d706ce1ddd0ec12c3c7e031d269188 (patch) | |
tree | 4b670ece3a52dc3a5f02191ff5e6350f43a56890 /extra | |
parent | 33368b57aa077ac13448f4d4927dd8a77934f763 (diff) | |
download | adenosine-1e2e1ddc47d706ce1ddd0ec12c3c7e031d269188.tar.gz adenosine-1e2e1ddc47d706ce1ddd0ec12c3c7e031d269188.zip |
nginx and systemd config examples
Diffstat (limited to 'extra')
-rw-r--r-- | extra/nginx_example | 37 | ||||
-rw-r--r-- | extra/systemd_unit_example | 19 |
2 files changed, 56 insertions, 0 deletions
diff --git a/extra/nginx_example b/extra/nginx_example new file mode 100644 index 0000000..5ee3647 --- /dev/null +++ b/extra/nginx_example @@ -0,0 +1,37 @@ + +upstream adenosine-pds { + server localhost:3030; +} + +server { + listen 80; + listen [::]:80; + listen 443 ssl http2; + listen [::]:443 ssl http2; + server_name example.adenosine.social; + + ssl_certificate /etc/letsencrypt/live/adenosine.social/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/adenosine.social/privkey.pem; + + #add_header Content-Security-Policy "default-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'"; + add_header X-Frame-Options "SAMEORIGIN"; # 'always' if nginx > 1.7.5 + add_header X-Content-Type-Options "nosniff"; # 'always' if nginx > 1.7.5 + add_header X-Xss-Protection "1"; + # Enable STS with one year period (breaks http; optional) + #add_header Strict-Transport-Security "max-age=31557600; includeSubDomains"; + + #access_log /var/log/nginx/adenosine-pds.access.log; + error_log /var/log/nginx/adenosine-pds.error.log; + + if ($scheme = http) { + return 301 https://$server_name$request_uri; + } + + location / { + proxy_pass http://adenosine-pds; + proxy_set_header Host $http_host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } +} diff --git a/extra/systemd_unit_example b/extra/systemd_unit_example new file mode 100644 index 0000000..63b261a --- /dev/null +++ b/extra/systemd_unit_example @@ -0,0 +1,19 @@ +[Unit] +Description=adenosine PDS +After=network.target +StartLimitBurst=20 +StartLimitInterval=30min + +[Service] +Type=simple +User=www-data +Group=www-data +# TODO: under /var/lib/adenosine/ instead? +WorkingDirectory=/srv/adenosine/ +EnvironmentFile=/srv/adenosine/config.env +ExecStart=/usr/bin/adenosine-pds serve -v +Restart=always +RestartSec=3sec + +[Install] +WantedBy=multi-user.target |