mirror of
https://github.com/YunoHost-Apps/cryptpad_ynh.git
synced 2024-09-03 18:26:14 +02:00
Merge branch 'testing' into patch-2
This commit is contained in:
commit
2e655e49bc
8 changed files with 9 additions and 10 deletions
|
@ -39,6 +39,8 @@ adminKeys: [
|
|||
],
|
||||
```
|
||||
|
||||
3. Restart CryptPad service (In YunoHost webadmin -> Services -> cryptpad -> Restart)
|
||||
|
||||
## Documentation and resources
|
||||
|
||||
* Official app website: https://cryptpad.fr/
|
||||
|
|
|
@ -34,6 +34,7 @@ adminKeys: [
|
|||
"[cryptpad-user1@my.awesome.website/YZgXQxKR0Rcb6r6CmxHPdAGLVludrAF2lEnkbx1vVOo=]",
|
||||
],
|
||||
```
|
||||
3. Redémarrer le service CryptPad
|
||||
|
||||
## Documentations et ressources
|
||||
|
||||
|
|
|
@ -1,10 +1,5 @@
|
|||
location ^~ / {
|
||||
|
||||
# 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;
|
||||
|
|
|
@ -9,3 +9,5 @@ adminKeys: [
|
|||
"[cryptpad-user1@my.awesome.website/YZgXQxKR0Rcb6r6CmxHPdAGLVludrAF2lEnkbx1vVOo=]",
|
||||
],
|
||||
```
|
||||
|
||||
3. Restart CryptPad service (In YunoHost webadmin -> Services -> cryptpad -> Restart)
|
||||
|
|
|
@ -9,4 +9,5 @@ adminKeys: [
|
|||
"[cryptpad-user1@my.awesome.website/YZgXQxKR0Rcb6r6CmxHPdAGLVludrAF2lEnkbx1vVOo=]",
|
||||
],
|
||||
```
|
||||
|
||||
3. Redémarrer le service CryptPad (Dans webadmin YunoHost -> Services -> cryptpad -> Redémarrer)
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
"url": "https://frju365.yunohost.support"
|
||||
},
|
||||
"requirements": {
|
||||
"yunohost": ">= 4.2.4"
|
||||
"yunohost": ">= 4.3.0"
|
||||
},
|
||||
"multi_instance": false,
|
||||
"services": [
|
||||
|
|
|
@ -107,8 +107,7 @@ ynh_add_nginx_config
|
|||
#=================================================
|
||||
ynh_script_progression --message="Configuring a systemd service..." --weight=1
|
||||
|
||||
ynh_replace_string --match_string="__ENV_PATH__" --replace_string="$PATH" --target_file="../conf/systemd.service"
|
||||
|
||||
env_path="$PATH"
|
||||
ynh_add_systemd_config
|
||||
|
||||
#=================================================
|
||||
|
|
|
@ -134,8 +134,7 @@ popd
|
|||
#=================================================
|
||||
ynh_script_progression --message="Upgrading systemd configuration..." --weight=1
|
||||
|
||||
ynh_replace_string --match_string="__ENV_PATH__" --replace_string="$PATH" --target_file="../conf/systemd.service"
|
||||
|
||||
env_path="$PATH"
|
||||
# Create a dedicated systemd config
|
||||
ynh_add_systemd_config
|
||||
|
||||
|
|
Loading…
Reference in a new issue