1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/plume_ynh.git synced 2024-09-03 20:15:54 +02:00

Adding yunohost panel

This commit is contained in:
yalh76 2019-03-20 02:30:59 +01:00
parent 0330150c88
commit 7caece6d68
2 changed files with 9 additions and 0 deletions

View file

@ -17,3 +17,9 @@ ROCKET_ADDRESS=127.0.0.1
# Secret key used for private cookies and CSRF protection
# You can generate one with `openssl rand -base64 32`
ROCKET_SECRET_KEY=__SECRET_KEY__
# Mail settings
MAIL_SERVER=localhost
#MAIL_USER=example
#MAIL_PASSWORD=123456
MAIL_HELO_NAME=__DOMAIN__

View file

@ -16,4 +16,7 @@ location ~* \.(jpg|jpeg|png|gif|ico|js|pdf)$ {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
client_max_body_size 10m;
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}