mirror of
https://github.com/YunoHost-Apps/cryptpad_ynh.git
synced 2024-09-03 18:26:14 +02:00
Merge pull request #2 from YunoHost-Apps/nginxconf-patch1-correction
Nginxconf patch1 correction
This commit is contained in:
commit
b73fe61382
2 changed files with 40 additions and 43 deletions
|
@ -1,15 +1,13 @@
|
||||||
location / {
|
root ROOT_PATH;
|
||||||
if ($args ~ ver=) {
|
index index.html;
|
||||||
|
|
||||||
|
if ($args ~ ver=) {
|
||||||
set $cacheControl max-age=31536000;
|
set $cacheControl max-age=31536000;
|
||||||
}
|
}
|
||||||
# Will not set any header if it is emptystring
|
# Will not set any header if it is emptystring
|
||||||
add_header Cache-Control $cacheControl;
|
add_header Cache-Control $cacheControl;
|
||||||
|
|
||||||
if ($scheme = http) {
|
set $styleSrc "'unsafe-inline' 'self'";
|
||||||
rewrite ^ https://$server_name$request_uri? permanent;
|
|
||||||
}
|
|
||||||
|
|
||||||
set $styleSrc "'unsafe-inline' 'self'";
|
|
||||||
set $scriptSrc "'self'";
|
set $scriptSrc "'self'";
|
||||||
set $connectSrc "'self' wss://cryptpad.fr wss://api.cryptpad.fr";
|
set $connectSrc "'self' wss://cryptpad.fr wss://api.cryptpad.fr";
|
||||||
set $fontSrc "'self'";
|
set $fontSrc "'self'";
|
||||||
|
@ -22,7 +20,7 @@ location / {
|
||||||
add_header Content-Security-Policy "default-src 'none'; style-src $styleSrc; script-src $scriptSrc; connect-src $connectSrc; font-src $fontSrc; img-src $imgSrc; frame-src $frameSrc;";
|
add_header Content-Security-Policy "default-src 'none'; style-src $styleSrc; script-src $scriptSrc; connect-src $connectSrc; font-src $fontSrc; img-src $imgSrc; frame-src $frameSrc;";
|
||||||
|
|
||||||
location = /cryptpad_websocket {
|
location = /cryptpad_websocket {
|
||||||
proxy_pass http://localhost:__PORT__/;
|
proxy_pass http://localhost:3000;
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
proxy_set_header Host $host;
|
proxy_set_header Host $host;
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
@ -52,7 +50,5 @@ location / {
|
||||||
}
|
}
|
||||||
|
|
||||||
try_files /www/$uri /www/$uri/index.html /customize/$uri;
|
try_files /www/$uri /www/$uri/index.html /customize/$uri;
|
||||||
|
|
||||||
# Include SSOWAT user panel.
|
# Include SSOWAT user panel.
|
||||||
include conf.d/yunohost_panel.conf.inc;
|
include conf.d/yunohost_panel.conf.inc;
|
||||||
}
|
|
||||||
|
|
|
@ -103,6 +103,7 @@ SETUP_SOURCE # Télécharge la source, décompresse et copie dans $final_path
|
||||||
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
|
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
|
||||||
# Modifie les variables dans le fichier de configuration nginx
|
# Modifie les variables dans le fichier de configuration nginx
|
||||||
sudo sed -i "s@__PORT__@$port@g" /etc/nginx/conf.d/$domain.d/$app.conf
|
sudo sed -i "s@__PORT__@$port@g" /etc/nginx/conf.d/$domain.d/$app.conf
|
||||||
|
sudo sed -i "s@ROOT_PATH@/var/www/$app@g" /etc/nginx/conf.d/$domain.d/$app.conf
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# CREATE DEDICATED USER
|
# CREATE DEDICATED USER
|
||||||
|
|
Loading…
Reference in a new issue