hello! i need help with changing the port and the following problems.
i have already searched the forum and found some information that you have to change this in ngnix. but it doesn’t say any more precise changes, nor what effect this will have on me.
Forum entry
Logged into the server as admin using SSH.
cd /etc/nginx/conf.d
sudo nano myDomain.local.conf
Changed 443 to my new port 8443.
/etc/init.d/nginx restart
In the admin web page I opened the new port.
I opened the port 8443 in the firewall
I can log in to myDomain.local
1st problem
if i now open an application e.g. plex the myDomain.local/plex starts BUT i always get redirected to myDomain.local/yunohost/admin/ no matter which application and i don’t get to any application
2nd problem
when i start the portscanner all standard ports of yunohost are open but the 8443 port is not
what is my problem?
Have I set something wrong?
Yunohost 11.2.11.3
server {
listen 8433 ssl http2;
listen [::]:8433 ssl http2;
server_name myDomain.local;
include /etc/nginx/conf.d/security.conf.inc;
ssl_certificate /etc/yunohost/certs/myDomain.local/crt.pem;
ssl_certificate_key /etc/yunohost/certs/myDomain.local/key.pem;
location ^~ '/.well-known/autoconfig/mail/' {
alias /var/www/.well-known/myDomain.local/autoconfig/mail/;
}