Please note the new address for this forum : forum.excito.org. The old address redirects here but I don't know for how long. Thanks !
New user's registration have been closed due to high spamming and low trafic on this forum. Please contact forum admins directly if you need an account. Thanks !
Change web admin page from http to https
Change web admin page from http to https
Is it possible to reach the web admin login page by a https address, instead of regual http?
Example:
https://mybubbatoo.bubbaserver.com
I already opened up my router on port 443. What do I change in Bubba?
Example:
https://mybubbatoo.bubbaserver.com
I already opened up my router on port 443. What do I change in Bubba?
No it is not strange! Easyfind is just a simple forward as mentioned in manual and at the forum. When you want to access your admin on secured protocol from outside you have to use your own ip your network is connected to internet (whatismyip.com), then >> https://ipnetwork/admin that works for sure if you also opened this port in router. If you own a domainname you can et the dns to this ip which is nicer 

Hi,
Using https with easyfind does work, easyfind works with http and https protocols.
However, using https will show two warnings as the certificates are not verified by a third party.
Using IE this will show a kind of error page recommending you not to connect to the site, and also in Firefox this will show as a warning.
/PA
Using https with easyfind does work, easyfind works with http and https protocols.
However, using https will show two warnings as the certificates are not verified by a third party.
Using IE this will show a kind of error page recommending you not to connect to the site, and also in Firefox this will show as a warning.
/PA
Just did this:
In the sites-available/bubba file I replaced the:
to
accessing http://bubba redirects to https://bubba for any page below the bubba directory
In the sites-available/bubba file I replaced the:
Code: Select all
<VirtualHost *:80>
...stuff...
</VirtualHost>
Code: Select all
<VirtualHost *:80>
RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
</VirtualHost>