mirror of
https://github.com/YunoHost-Apps/rocketchat_ynh.git
synced 2024-09-03 20:16:25 +02:00
Merge pull request #12 from selamanse/master
review between dicer/selamanse happened at fork repo.
This commit is contained in:
commit
d7b3178b53
2 changed files with 8 additions and 2 deletions
|
@ -7,5 +7,5 @@ Rocketchat for yunohost
|
||||||
|
|
||||||
You can either :
|
You can either :
|
||||||
|
|
||||||
* Install from the Yunohost Admin web interface, by providing this URL: [https://github.com/realitygaps/rocketchat_ynh](https://github.com/realitygaps/rocketchat_ynh)
|
* Install from the Yunohost Admin web interface, by providing this URL: [https://github.com/YunoHost-Apps/rocketchat_ynh](https://github.com/YunoHost-Apps/rocketchat_ynh)
|
||||||
* Install from the command-line: `yunohost app install https://github.com/realitygaps/rocketchat_ynh`
|
* Install from the command-line: `yunohost app install https://github.com/YunoHost-Apps/rocketchat_ynh`
|
||||||
|
|
|
@ -1,4 +1,10 @@
|
||||||
location ^~ #LOCATION# {
|
location ^~ #LOCATION# {
|
||||||
|
|
||||||
|
# Force HTTPS
|
||||||
|
if ($scheme = http) {
|
||||||
|
rewrite ^ https://$server_name$request_uri? permanent;
|
||||||
|
}
|
||||||
|
|
||||||
proxy_pass http://localhost:#PORT##PATH#;
|
proxy_pass http://localhost:#PORT##PATH#;
|
||||||
proxy_http_version 1.1;
|
proxy_http_version 1.1;
|
||||||
proxy_set_header Upgrade $http_upgrade;
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
|
Loading…
Reference in a new issue