Hello,
I am contributing on the packages for Yunohost. Recently, some users have problems installing a cryptpad instance when another app use also the port 3000.
Someone have propose a fix where the variable for PORT can be different and it seems a workaround on the config.js the line becomes httpPort: 3001,
and with in the nginx.conf
location / {
proxy_pass http://localhost:3001;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_max_body_size 150m;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection upgrade;
}
My question about this fix, is it safe ?