![]() |
[Howto] Change ispcp default listening port and add ssl - Printable Version +- ispCP - Board - Support (http://www.isp-control.net/forum) +-- Forum: ispCP Omega Contributions Area (/forum-40.html) +--- Forum: Howtos (/forum-41.html) +--- Thread: [Howto] Change ispcp default listening port and add ssl (/thread-9094.html) Pages: 1 2 |
RE: [Howto] Change ispcp default listening port and add ssl - mwlake - 06-30-2011 07:22 AM Used your instructions Change the default port of ispCP and enabling SSL and all is working great on my Ubuntu Lucid Server. I have also installed Munin for monitoring. Problem is the usual URL for munuin is http://www.servername.tld/munin. When I enter the munin link I get redirected to http://www.servername.tld:8443. Is there some redirect you could suggest in the modified 00_master.conf that would remedy this issue? RE: [Howto] Change ispcp default listening port and add ssl - aseques - 06-30-2011 04:26 PM (06-30-2011 07:22 AM)mwlake Wrote: Used your instructions Change the default port of ispCP and enabling SSL and all is working great on my Ubuntu Lucid Server.There are several options: .- You could try this: Changing: Code: RewriteCond %{REQUEST_URI} !^\/(webmail|pma|ftp)($|\/.*) [NC] Code: RewriteCond %{REQUEST_URI} !^\/(webmail|pma|ftp|munin)($|\/.*) [NC] And create a new conditions like this: Code: RewriteCond %{REQUEST_URI} !^\/php5\/php5-fcgi-starter\/munin\/.* [NC] .- You could also create a rule with mod rewrite in virtualhost for port 80 to disable the redirection of munin to https. .- Or you could change the munin domain and use something like stats.example.com |