mirror of
https://github.com/YunoHost-Apps/yunorunner_ynh.git
synced 2024-09-03 20:36:13 +02:00
Fix nginx for sub path
This commit is contained in:
parent
74ee4c2e15
commit
607463ddd0
2 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
;; Test complet
|
||||
; pre-install
|
||||
git clone https://github.com/YunoHost/CI_package_check /home/CI_package_check
|
||||
sudo git clone https://github.com/YunoHost/CI_package_check /home/CI_package_check
|
||||
; Manifest
|
||||
domain="domain.tld" (DOMAIN)
|
||||
path="/path" (PATH)
|
||||
|
|
|
@ -6,7 +6,7 @@ location __PATH__/ {
|
|||
rewrite ^ https://$server_name$request_uri? permanent;
|
||||
}
|
||||
|
||||
proxy_pass http://127.0.0.1:4242;
|
||||
proxy_pass http://127.0.0.1:4242/;
|
||||
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
|
|
Loading…
Reference in a new issue