Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - abubin

Pages: [1]
1
How to / Re: Install Awstats
« on: March 24, 2016, 09:30:21 AM »
followed your guide to install awstats. But getting Internal Server Error.

Upon checking the logs,

Code: [Select]
[Thu Mar 24 17:20:30 2016] [error] attempt to invoke directory as script: /usr/local/apache/htdocs/awstats-7.3/wwwroot/cgi-bin/
[Thu Mar 24 17:20:44 2016] [error] suexec policy violation: see suexec log for more details
[Thu Mar 24 17:20:44 2016] [error] Premature end of script headers: awstats.pl

2
SSL / Re: SSL service not running
« on: January 26, 2016, 04:48:58 AM »
i found a solution...i have to enable the httpd-ssl.conf to get it working.

But when I enable that, I get some error on non-existing SSL cert. I just pointed it to correct path and all is working now!! Yeah...

Seriously, this is supposed to be centos web panel. This kind of thing need to be automated. There should be an option in apache or virtualhost somewhere to enable/disable SSL.

3
SSL / Re: SSL service not running
« on: January 26, 2016, 04:29:55 AM »
Here is the apache config file /usr/local/apache/conf.d/vhosts-ssl.conf

Code: [Select]

# vhost_start mydomain.com
<VirtualHost 192.168.1.10:443>
 ServerName mydomain.com
 ServerAlias www.mydomain.com
 DocumentRoot /home/mydomain/public_html
 SSLEngine on
 SSLCertificateFile /etc/pki/tls/certs/mydomain.com.cert
 SSLCertificateKeyFile /etc/pki/tls/private/mydomain.com.key
 SSLCertificateChainFile /etc/pki/tls/certs/mydomain.com.bundle
<IfModule mod_suexec.c>
    SuexecUserGroup mydomain mydomain
</IfModule>

<IfModule mod_suphp.c>
    suPHP_UserGroup mydomain mydomain
    suPHP_ConfigPath /home/mydomain
</IfModule>

<Directory "/home/mydomain/public_html">
    AllowOverride All
</Directory>
</VirtualHost>
# vhost_end mydomain.com

4
SSL / SSL service not running
« on: January 26, 2016, 04:14:01 AM »
I have purchased and installed SSL cert successfully on a virtualhost site. Apache also can be restarts without errors. However, I cannot go to the website in SSL. I checked the server and port 443 is not even running.

I think SSL is not running but how do I get it running?

Pages: [1]