• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

How do I access Horde webmail via https://domain.com/webmail ?

rutp

New Pleskian
I am using Plesk 9.5 and 9.2.
I need to use own SSL for that domain.

I have tried in this link http://forum.parallels.com/showthread.php?t=72717&highlight=ssl+horde
But cannot fix it.


I my way, I have created a new file in /etc/httpd/conf.d/z_test.conf like this

<IfModule mod_ssl.c>
<VirtualHost 203.170.50.103:443>

ServerName domain.com:443
ServerAlias www.domain.com
ServerAdmin [email protected]

Include /etc/psa-webmail/horde/conf.d/*

UseCanonicalName Off

DocumentRoot /usr/share/psa-horde
DocumentRoot /etc/psa-webmail/horde/conf.d/

Alias /horde/ /usr/share/psa-horde/
Alias /imp/ /usr/share/psa-horde/imp/
Alias /webmail /usr/share/psa-horde/imp/
SSLEngine on
SSLVerifyClient none
SSLCertificateFile /etc/httpd/conf/httpd.pem
CustomLog /tmp/access_ssl_log plesklog
ErrorLog /tmp/error_log


<Directory /usr/share/psa-horde>

<IfModule sapi_apache2.c>
php_admin_flag engine on
php_admin_flag magic_quotes_gpc off
php_admin_flag safe_mode off

php_admin_value open_basedir "/usr/share/psa-horde:/etc/psa/webmail/horde:/etc/psa:/tmp:/var/tmp:/var/log/psa-horde:/usr/share/doc:/usr/share/psa-pear"
php_admin_value include_path "/usr/share/psa-horde:/usr/share/psa-horde/lib:/usr/share/psa-pear:."
</IfModule>

<IfModule mod_php5.c>
php_admin_flag engine on
php_admin_flag magic_quotes_gpc off
php_admin_flag safe_mode off

php_admin_value open_basedir "/usr/share/psa-horde:/etc/psa/webmail/horde:/etc/psa:/tmp:/var/tmp:/var/log/psa-horde:/usr/share/doc:/usr/share/psa-pear"
php_admin_value include_path "/usr/share/psa-horde:/usr/share/psa-horde/lib:/usr/share/psa-pear:."
</IfModule>

SSLRequireSSL

Order allow,deny
Allow from all
</Directory>
</VirtualHost>


But when I access to any webpage under https://domain.com/ such as https://domain.com/test.php it will always redirect to https://domain.com/webmail

I think may be something wrong on this

ServerName domain.com:443
ServerAlias www.domain.com

How can I set ServerName and ServerAlias like this domain.com/webmail?

Thanks for advance.
 
Include /etc/psa-webmail/horde/conf.d/*

maybe this is your problem add comment or delete and try again i think...
 
and you use double

DocumentRoot /usr/share/psa-horde
DocumentRoot /etc/psa-webmail/horde/conf.d/

i think second is not necassary ..
 
Back
Top