Skip to content
Snippets Groups Projects
Commit f89e3668 authored by Timo Kösters's avatar Timo Kösters
Browse files

Merge branch 'deploy-proxy' into 'master'

Document proper proxy options in DEPLOY.md

See merge request famedly/conduit!67
parents 8c72909b 7e4320a0
No related branches found
No related tags found
No related merge requests found
...@@ -136,8 +136,8 @@ ### Apache ...@@ -136,8 +136,8 @@ ### Apache
ServerName your.server.name # EDIT THIS ServerName your.server.name # EDIT THIS
AllowEncodedSlashes NoDecode AllowEncodedSlashes NoDecode
ProxyPass /_matrix/ http://localhost:6167/_matrix/ ProxyPass /_matrix/ http://127.0.0.1:6167/_matrix/ nocanon
ProxyPassReverse /_matrix/ http://localhost:6167/_matrix/ ProxyPassReverse /_matrix/ http://127.0.0.1:6167/_matrix/
Include /etc/letsencrypt/options-ssl-apache.conf Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateFile /etc/letsencrypt/live/your.server.name/fullchain.pem # EDIT THIS SSLCertificateFile /etc/letsencrypt/live/your.server.name/fullchain.pem # EDIT THIS
...@@ -159,13 +159,23 @@ ### Nginx ...@@ -159,13 +159,23 @@ ### Nginx
``` ```
server { server {
listen 443; listen 443 ssl http2;
listen 8448; listen [::]:443 ssl http2;
listen 8448 ssl http2;
listen [::]:8448 ssl http2;
server_name your.server.name; # EDIT THIS server_name your.server.name; # EDIT THIS
merge_slashes off;
location /_matrix/ { location /_matrix/ {
proxy_pass http://localhost:6167/_matrix/; proxy_pass http://127.0.0.1:6167$request_uri;
proxy_set_header Host $http_host;
proxy_buffering off;
} }
ssl_certificate /etc/letsencrypt/live/your.server.name/fullchain.pem; # EDIT THIS
ssl_certificate_key /etc/letsencrypt/live/your.server.name/privkey.pem; # EDIT THIS
ssl_trusted_certificate /etc/letsencrypt/live/your.server.name/chain.pem; # EDIT THIS
include /etc/letsencrypt/options-ssl-nginx.conf;
} }
``` ```
**You need to make some edits again.** When you are done, run **You need to make some edits again.** When you are done, run
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment