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

Got problems with your B2 or B3? Share and get helped!
Post Reply
trencarbe
Posts: 103
Joined: 11 Aug 2008, 16:02

Change web admin page from http to https

Post by trencarbe »

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?
ahoff
Posts: 105
Joined: 01 Apr 2008, 20:50
Location: Swe

Post by ahoff »

You shuld not have to do anything on your bubba. Have you tryed to conect with https://? Works for me. :o
trencarbe
Posts: 103
Joined: 11 Aug 2008, 16:02

Post by trencarbe »

yes, I can get to the admin page with https using the internal address, but it's uncontactable from outside. Despite the https port set in the router...

The http address works from outside, but not https address.

strange! :?:
squadra
Posts: 96
Joined: 19 Sep 2008, 09:02

Post by squadra »

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 :-)
pa
Posts: 308
Joined: 06 Dec 2006, 04:38
Location: Sweden
Contact:

Post by pa »

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
Binkem
Posts: 388
Joined: 10 Jul 2008, 02:26

Post by Binkem »

Next question: is it possible to make Bubba accept only https connections to the admin page?
Eek
Posts: 372
Joined: 23 Dec 2007, 03:03
Location: the Netherlands

Post by Eek »

yes
1) turn off port 80
2) put a redirect to 443 for /admin
cheers
Eek
paolol61
Posts: 99
Joined: 20 Nov 2007, 04:18

Post by paolol61 »

Or as I do only enable the router to forward port 443 to bubba ;)
8)
Binkem
Posts: 388
Joined: 10 Jul 2008, 02:26

Post by Binkem »

I would like my web-page to be accessible via http (port 80) though :(

I'll try making a redirect for /admin
ahoff
Posts: 105
Joined: 01 Apr 2008, 20:50
Location: Swe

Post by ahoff »

Edit /etc/apache2/sites-available/bubba to just accept conections on port 443. Coment out the line: NameVirtualHost *:80 with a #, and the <VirtualHost *:80> section.
jonlu
Posts: 8
Joined: 27 Jun 2008, 06:27

Post by jonlu »

Just did this:

In the sites-available/bubba file I replaced the:

Code: Select all

<VirtualHost *:80>

    ...stuff...

</VirtualHost>
to

Code: Select all

<VirtualHost *:80>

        RewriteEngine on
        RewriteCond %{HTTPS} off
        RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

</VirtualHost>
accessing http://bubba redirects to https://bubba for any page below the bubba directory
Post Reply