------------
In order to see current secret-URL, do in your SSH:
Code: Select all
sudo cat /usr/local/vesta/web/inc/login_url.php
Code: Select all
<?php $login_url='SOMETHING';
If you don't have secret-URL - you will get empty or not-existing file - if you want to create it - see next section.
To use this secret-URL, you can point your browser to:
Code: Select all
https://yourhostname:8083/?SOMETHING
In order to change or set (create) secret-URL, do:
Code: Select all
sudo mcedit /usr/local/vesta/web/inc/login_url.php
Code: Select all
<?php $login_url='SOMETHING';
Save the file.
----------------------------------------
In order to remove secret-URL, do:
Code: Select all
sudo rm /usr/local/vesta/web/inc/login_url.php