From a28d549e2dbf62b013fe5327c88b58f2218c4b1b Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Tue, 16 Feb 2021 14:48:08 +0100 Subject: [PATCH] Fix --- conf/nginx.conf | 18 +++++++++++++----- conf/systemd.service | 8 ++++---- 2 files changed, 17 insertions(+), 9 deletions(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index b072a55..4390138 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -1,16 +1,24 @@ #sub_path_only rewrite ^__PATH__$ __PATH__/ permanent; location __PATH__/ { - # Path to source - alias __FINALPATH__/ ; - - index empty.html; - # Force usage of https if ($scheme = http) { rewrite ^ https://$server_name$request_uri? permanent; } + proxy_pass http://127.0.0.1:__PORT__; + proxy_redirect off; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Host $server_name; + + proxy_http_version 1.1; + proxy_set_header Connection "upgrade"; + proxy_set_header Upgrade $http_upgrade; + # Include SSOWAT user panel. include conf.d/yunohost_panel.conf.inc; + more_clear_input_headers 'Accept-Encoding'; } diff --git a/conf/systemd.service b/conf/systemd.service index 668a965..71b2c4e 100755 --- a/conf/systemd.service +++ b/conf/systemd.service @@ -1,16 +1,16 @@ [Unit] -Description=__APP__ service +Description=TiddlyWiki: interactive wiki After=network.target [Service] Type=simple User=__APP__ Group=__APP__ -WorkingDirectory=__FINALPATH__ -ExecStart=__NODEJS_PATH__/node __FINALPATH__/tiddlywiki monwiki --listen port=__port__ authenticated-user-header=basic -Restart=always Environment=PATH=/usr/bin:/usr/local/bin:__NODEJS_PATH__ Environment=NODE_ENV=production +WorkingDirectory=__FINALPATH__ +ExecStart=__NODEJS_PATH__/node __FINALPATH__/tiddlywiki mywiki --listen port=__port__ authenticated-user-header=basic +Restart=always [Install] WantedBy=multi-user.target