Panel-URL

  • Hello,


    How can i prevent that the panel can get reached trought all other domain (domain.tld:8080 , domain2.tld:8080, ...)?
    Is it possible that the panel only get reached trought the URL configured during the install?


    Thanks in advance.

    Sry for my bad english :)

  • Hello ;


    Will be fixed in next release but right now, you can do:


    1. Edit the /etc/nginx/nginx.conf file and add the following configuration snippet just belowhttp {


    Code
    1. server {listen 8080;return 404;}


    2. Edit the /etc/nginx/sites-available/00_master.conf file and replace the following directives


    Code
    1. listen 192.168.1.133:8080;listen [::]:8080 default ipv6only=on;


    by


    Code
    1. listen *:8080;


    3 Do the same thing for the /etc/nginx/sites-available/00_master_ssl.conf file if any


    4. Restart nginx


    Code
    1. # service nginx restart


    Then, your problem should be solved.

    badge.php?id=1239063037&bid=2518&key=1747635596&format=png&z=547451206

  • Atm I don't know how I'll implement it, but I think yes.