From 7caece6d68b7e45db425d1cda243a4196861b441 Mon Sep 17 00:00:00 2001 From: yalh76 Date: Wed, 20 Mar 2019 02:30:59 +0100 Subject: [PATCH] Adding yunohost panel --- conf/.env | 6 ++++++ conf/nginx.conf | 3 +++ 2 files changed, 9 insertions(+) diff --git a/conf/.env b/conf/.env index b567ad6..9574cd9 100755 --- a/conf/.env +++ b/conf/.env @@ -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__ \ No newline at end of file diff --git a/conf/nginx.conf b/conf/nginx.conf index 714cd7c..905a312 100755 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -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; }