This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

Using Custom Vhost Entries for Webmail, MySQL, Etc.
#61
RE: Using Custom Vhost Entries for Webmail, MySQL, Etc.
If all sites are 403, apache server is running but you have a major error on the location of your sites or files.
PM me your /etc/sentora/configs/apache/httpd-vhosts.conf file so I can see what is going on.
-TGates - Project Council

SEARCH the Forums or read the DOCUMENTATION before posting!
Support Sentora and Donate: HERE

Find my support or modules useful? Donate to TGates HERE
Developers and code testers needed!
Contact TGates for more information
Reply
Thanks given by:
#62
RE: Using Custom Vhost Entries for Webmail, MySQL, Etc.
(08-30-2017, 11:52 AM)TGates Wrote: If all sites are 403, apache server is running but you have a major error on the location of your sites or files.
PM me your /etc/sentora/configs/apache/httpd-vhosts.conf file so I can see what is going on.

Thank you !!

Yesterday a friend was able to fix the problem. Dont know what he did but i will post the answer here to help others.

Still cant make it work with webmail.mydomain.com

now i´m affraid to change things and dont be able to recover later...
Reply
Thanks given by:
#63
RE: Using Custom Vhost Entries for Webmail, MySQL, Etc.
If you follow the tutorial it will work. You must also add a DNS entry for webmail so your server knows where to redirect it Wink
-TGates - Project Council

SEARCH the Forums or read the DOCUMENTATION before posting!
Support Sentora and Donate: HERE

Find my support or modules useful? Donate to TGates HERE
Developers and code testers needed!
Contact TGates for more information
Reply
Thanks given by:
#64
RE: Using Custom Vhost Entries for Webmail, MySQL, Etc.
(09-01-2017, 05:11 AM)TGates Wrote: If you follow the tutorial it will work. You must also add a DNS entry for webmail so your server knows where to redirect it Wink

Finally, after a lot of failed attempts this is what worked for me :

</VirtualHost>
# Configuration for WebMail
<VirtualHost *:80>
ServerAlias webmail.*
DocumentRoot "/etc/sentora/panel/etc/apps/webmail/"
AddType application/x-httpd-php .php
<Directory "/etc/sentora/panel/etc/apps/webmail/">
Options +FollowSymLinks -Indexes
AllowOverride All
Require all granted
</Directory>

All the domains was working with https (letsencrypt) and for now after adding this code in the virtual host override i´m able to access via webmail.anydomain.com

Now just have to figure out how to do the same but with TLS using the existing letsencrypt certificates.
Also related to this, i would appreciate some step by step help in order to create a cron job for auto renewal of all the letsencrypt certificates.

Thanks !!
Reply
Thanks given by:
#65
RE: Using Custom Vhost Entries for Webmail, MySQL, Etc.
About the certificates, you would have to make new ones for every webmail.domain.com. This is why I suggest using the alternative to this by setting it as domain.com/webmail. This way it will be covered by the domain's certificate Cool  (Which is how I have mine setup now.)
-TGates - Project Council

SEARCH the Forums or read the DOCUMENTATION before posting!
Support Sentora and Donate: HERE

Find my support or modules useful? Donate to TGates HERE
Developers and code testers needed!
Contact TGates for more information
Reply
Thanks given by:
#66
RE: Using Custom Vhost Entries for Webmail, MySQL, Etc.
(09-03-2017, 09:22 AM)TGates Wrote: About the certificates, you would have to make new ones for every webmail.domain.com. This is why I suggest using the alternative to this by setting it as domain.com/webmail. This way it will be covered by the domain's certificate Cool  (Which is how I have mine setup now.)

Great! i´ll try that and come back with the results ...

Thanks!
Reply
Thanks given by:
#67
RE: Using Custom Vhost Entries for Webmail, MySQL, Etc.
(09-03-2017, 12:35 PM)rpuig Wrote: Great! i´ll try that and come back with the results ...

Thanks!

I think the only change is this: http://forums.sentora.org/showthread.php...54#pid6954
-TGates - Project Council

SEARCH the Forums or read the DOCUMENTATION before posting!
Support Sentora and Donate: HERE

Find my support or modules useful? Donate to TGates HERE
Developers and code testers needed!
Contact TGates for more information
Reply
Thanks given by:
#68
RE: Using Custom Vhost Entries for Webmail, MySQL, Etc.
I followed the settings in this forum and also the fora with this subject and also

When I go to webmail.topmatica.nl  it goes to the non-secure location.
When i put the https:// in  front of it I go to panel.topmatica.nl. The panel is secure , thats' ok.  But I like to go the the secure webmail.topmatica.nl location.

When I go to topmatica.nl/webmail I get a 403 access forbidden.
Global vhost entry: 
Code:
Alias /webmail /etc/sentora/panel/etc/apps/webmail/

I don't see the the routing in my VHOST or configfile! Did I forget something?

I deleted the <Virtualhost  : 80 >  in my VHOST override a long time ago made for webmail but it doesn't matter.

My VHOST override for Topmatica.nl domain:
Domain enable: On
SuHosin : on
Openbase : on
Port override: 443
Forward port 80 to .. : On
Ip override:   nothing

Custom entry:
Code:
SetEnvIf Request_URI "^/(Images/|Img).+$" nolog
SSLEngine on
SSLProtocol ALL -SSLv2 -SSLv3
SSLHonorCipherOrder On
SSLCipherSuite ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+3DES:DH+3DES:RSA+AESGCM:RSA+AES:RSA+3DES:!aNULL:!MD5:!DSS
SSLCertificateFile /etc/letsencrypt/live/www.topmatica.nl/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/www.topmatica.nl/privkey.pem
SSLCertificateChainFile /etc/letsencrypt/live/www.topmatica.nl/chain.pem
# Keeping bellow for future upgrades.
# Requires Apache >= 2.4
SSLCompression off
</VirtualHost>

is there some config file I missed? What do I have to check?
Reply
Thanks given by:
#69
RE: Using Custom Vhost Entries for Webmail, MySQL, Etc.
First thing I noticed is you added a closing </virtualhost>. Sentora will automatically add it when it re-writes the vhost information.


Also, to use the alias method for every domain automatically, you need to add:

Code:
# Alias for MySQL login
Alias "/mysql" "/etc/sentora/panel/etc/apps/phpmyadmin"
<Directory "/etc/sentora/panel/etc/apps/phpmyadmin/">
   php_admin_value open_basedir /etc/sentora/panel/etc/apps/phpmyadmin
   Options +FollowSymLinks -Indexes
   AllowOverride All
   Require all granted
</Directory>
# Alias for roundcube WebMail login
Alias "/webmail" "/etc/sentora/panel/etc/apps/webmail"
<Directory "/etc/sentora/panel/etc/apps/webmail/">
   php_admin_value open_basedir /var/sentora/temp/:/etc/sentora/panel/etc/apps/webmail:/var/sentora/logs/roundcube
   Options +FollowSymLinks -Indexes
   AllowOverride All
   Require all granted
</Directory>
Location: Module Admin > Apache Admin > Global VHost Entry
Save and wait for the httpd-vhosts.conf file to be re-written and for apache to reload (About 5 minutes).
Then any domain or sub domain should be able to access your webmail or phpmyadmin by using domain.com/webmail or sub.domain.com/webmail and domain.com/mysql or sub.domain.com/mysql
-TGates - Project Council

SEARCH the Forums or read the DOCUMENTATION before posting!
Support Sentora and Donate: HERE

Find my support or modules useful? Donate to TGates HERE
Developers and code testers needed!
Contact TGates for more information
Reply
Thanks given by: inkoop@topmatica.nl
#70
RE: Using Custom Vhost Entries for Webmail, MySQL, Etc.
Tgates,

Thanks, the domains are reacting with the Roundcube service on domain.nl/webmail/  and /mysql (is that a Volvo Ocean race sailboat  Wink )

But Roundcube giving me a :
"CONFIGURATION ERROR

config.inc.php was not found.
Please read the INSTALL instructions!"


I will first check the if customer has e-mail configured in the panel.


And

My rerouting from onsecure to secure when http://panel.topmatica.nl  is used is not working. I come to the old Joomla site which is offline. Despite the the Vhost override  Undecided  
Secure website and panel is working and reacting on https://panel.topmatica.nl
Reply
Thanks given by:


Possibly Related Threads…
Thread Author Replies Views Last Post
SSL and Custom Vhost Entries for Webmail etienne7702 5 14 ,260 03-08-2018, 09:54 PM
Last Post: etienne7702
How to overwrite default admin. vhost? NIicK 1 6 ,406 03-27-2016, 01:16 AM
Last Post: Me.B
Roundcube Webmail https path pthalmann 0 4 ,517 12-29-2014, 09:09 AM
Last Post: pthalmann

Forum Jump:


Users browsing this thread: 3 Guest(s)