mirror of
https://github.com/YunoHost-Apps/ethercalc_ynh.git
synced 2024-09-03 18:26:36 +02:00
fix
This commit is contained in:
parent
9d0deea122
commit
1b4ef93c61
3 changed files with 40 additions and 15 deletions
|
@ -4,19 +4,44 @@ location ^~ / {
|
|||
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;
|
||||
location __PATH__/ {
|
||||
proxy_pass http://127.0.0.1:8000;
|
||||
# auth_basic "Viewer Only";
|
||||
# auth_basic_user_file .htpasswd;
|
||||
}
|
||||
|
||||
location ~ __PATH__/\. {
|
||||
deny all;
|
||||
}
|
||||
|
||||
location ~ __PATH__/edit$ {
|
||||
proxy_pass http://127.0.0.1:8000;
|
||||
auth_basic "Editor Only";
|
||||
auth_basic_user_file .htpasswd;
|
||||
}
|
||||
|
||||
# Example for mounting under /ethercalc
|
||||
location __PATH__ {
|
||||
return 301 $scheme://$server_name$request_uri/;
|
||||
}
|
||||
location __PATH__/ {
|
||||
proxy_pass http://127.0.0.1:8000;
|
||||
rewrite /ethercalc(/.*) $1 break;
|
||||
}
|
||||
location __PATH__/socket.io {
|
||||
proxy_pass http://127.0.0.1:8000;
|
||||
rewrite /ethercalc(/.*) $1 break;
|
||||
# WebSocket support
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Connection "upgrade";
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "upgrade";
|
||||
proxy_set_header Host $host;
|
||||
}
|
||||
|
||||
### Uncomment this if running with --basepath /path/prefix
|
||||
location __PATH__/zappa/socket/__local/ {
|
||||
rewrite (.*) /path/prefix$1;
|
||||
}
|
||||
}
|
||||
|
||||
# Include SSOWAT user panel.
|
||||
include conf.d/yunohost_panel.conf.inc;
|
||||
more_clear_input_headers 'Accept-Encoding';
|
||||
}
|
|
@ -9,7 +9,7 @@ Group=__APP__
|
|||
WorkingDirectory=__FINALPATH__
|
||||
Environment="PATH=__ENV_PATH__"
|
||||
Environment="NODE_ENV=production"
|
||||
ExecStart=__FINALPATH__/bin/ethercalc --port __PORT__ --expire __EXPIRE__
|
||||
ExecStart=__FINALPATH__/bin/ethercalc --host 127.0.0.1 --port __PORT__ --expire __EXPIRE__ --polling --basepath /path/prefix
|
||||
RuntimeMaxSec=86400
|
||||
Restart=always
|
||||
|
||||
|
|
|
@ -102,7 +102,7 @@ ynh_script_progression --message="Building EtherCalc... (this will take some tim
|
|||
|
||||
pushd "$final_path" || ynh_die
|
||||
ynh_use_nodejs
|
||||
ynh_exec_warn_less npm install -g ethercalc
|
||||
ynh_exec_warn_less npm install #-g ethercalc
|
||||
popd || ynh_die
|
||||
|
||||
#=================================================
|
||||
|
|
Loading…
Add table
Reference in a new issue