![]() |
|
SSL as per Wiki not working on Ubuntu, my solution provided - Printable Version +- Sentora Support Forums (https://senforums.mach-hosting.com) +-- Forum: Sentora Forum Archives (https://senforums.mach-hosting.com/forumdisplay.php?fid=5) +--- Forum: Sentora Public Support Forums v1.0.x (https://senforums.mach-hosting.com/forumdisplay.php?fid=32) +---- Forum: General Support Forum v1.0.x (https://senforums.mach-hosting.com/forumdisplay.php?fid=36) +---- Thread: SSL as per Wiki not working on Ubuntu, my solution provided (/showthread.php?tid=154) Pages:
1
2
|
RE: SSL as per Wiki not working on Ubuntu, my solution provided - TGates - 12-08-2014 I had made a tutorial for Windows SSL that was tested (and I currently use it) but unfortunately i can't find it ATM. Should work just fine for *nix servers too by just altering the paths. I actually just posted a brief version of it in these forums just the other night to help somebody else out. RE: SSL as per Wiki not working on Ubuntu, my solution provided - stiuvert0007 - 06-24-2015 (12-07-2014, 07:39 AM)Me.B Wrote: In few lines the best solution is: THank you very much this is the only way I get HTTPS working on my site but I get a 403 Error. https://tilabmx.com/ I´ll appreciate your help with this. This is my entire ssl Vhost conf file included in httpd.conf PHP Code: Listen 443RE: SSL as per Wiki not working on Ubuntu, my solution provided - stiuvert0007 - 06-25-2015 When I use: Code: <Directory "/var/sentora/hostdata/zadmin/public_html/tilabmx_com">
Options FollowSymLinks Indexes
AllowOverride All
Order Allow,Deny
Allow from all
</Directory>And when I use: Code: <Directory "/var/sentora/hostdata/zadmin/public_html/tilabmx_com">
Options +FollowSymLinks -Indexes
AllowOverride All
Require all granted
</Directory
|