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.
Pages: [1]
1
Apache / Apache is not processing configuration files correctly
« on: April 05, 2019, 08:19:07 PM »
I'm trying to migrate a website to a server, the site alredy has a htaccess file with this options:
Options -Multiviews
Options -Indexes
and always returns 500 error with this log on apache error_log
/home/user/public_html/.htaccess: Options not allowed here
I already tried to modify vhost *.conf file and it still not working changing
<Directory "/home/user/public_html">
Options -Indexes -FollowSymLinks +SymLinksIfOwnerMatch
AllowOverride All Options=ExecCGI,Includes,IncludesNOEXEC,Indexes,MultiViews,SymLinksIfOwnerMatch
</Directory>
with this:
<Directory "/home/user/public_html">
Options All
AllowOverride All Options
</Directory>
and several others configurations, even I edited the file /usr/local/apache/conf/httpd.conf
and setted the configuration like this:
<Directory "/home/*/public_html">
Options All
AllowOverride All Options
</Directory>
and still not working.
note: on every change I restarted the httpd service or rebooted the server
Options -Multiviews
Options -Indexes
and always returns 500 error with this log on apache error_log
/home/user/public_html/.htaccess: Options not allowed here
I already tried to modify vhost *.conf file and it still not working changing
<Directory "/home/user/public_html">
Options -Indexes -FollowSymLinks +SymLinksIfOwnerMatch
AllowOverride All Options=ExecCGI,Includes,IncludesNOEXEC,Indexes,MultiViews,SymLinksIfOwnerMatch
</Directory>
with this:
<Directory "/home/user/public_html">
Options All
AllowOverride All Options
</Directory>
and several others configurations, even I edited the file /usr/local/apache/conf/httpd.conf
and setted the configuration like this:
<Directory "/home/*/public_html">
Options All
AllowOverride All Options
</Directory>
and still not working.
note: on every change I restarted the httpd service or rebooted the server
2
Postfix / I can't receive email on a domain
« on: March 25, 2017, 03:07:43 AM »
I can't receive emails only on a domain, my primary domain, other domains also on the same server has no issues, are receiving and sending emails with no problem.
I have installed a ssl certificate for primary domain after that the issue was started.
I already checked my config, tail my maillog and i couln't find the problem, please help me
I have installed a ssl certificate for primary domain after that the issue was started.
I already checked my config, tail my maillog and i couln't find the problem, please help me
Pages: [1]