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.


Topics - thquantv

Pages: [1]
1
E-Mail / Email relay
« on: June 05, 2019, 07:46:51 AM »
Dear all,
My email server with finished configure SPF, DKIM,... but sometimes go to spam gmail and blacklist by spamhaus.
I want to configure relay email to another mail server to send mail (Email relay service)

How to configure

2
Installation / Extend storage for web server
« on: October 31, 2016, 08:00:19 AM »
Dear all,
I have tested CentOS Web panel with 5GB storage Linux system...
How to extend web panel without reinstall web panel.
I try to add new storage to 30GB but xvda1 only 5GB detect.
How to do it?

3
Installation / Internal Error 500 when setup Wordpress CWP Apache2
« on: August 17, 2016, 09:06:58 AM »
Dear all,
I finished to install CWP and config VirtualHost.
Now I want to install Wordpress. but when I copy source to public_html and run.
It show Internal error 500 and
The xxxxx.com page isn’t working

xxxxx.com is currently unable to handle this request.


Yii2 framework project work fine.
But Wordpress not work (localhost MAMP work fine).
Please help me.

4
Apache / (SOLVED)More website in 1 server
« on: June 22, 2016, 03:53:40 AM »
Hello all,
I finished to configure CWP.
My first website is OK (Website domain go to public_html/website1)
When i create new user with domain2.com and virtual host show exact folder ( domain2.com -> public_html/website2)
I think some wrong with virtual host configuring.. but I don't know how to fix it? (rebuilt apache, fix permission)
I see like all new account only redirect to first website (not default page)



My virtual host file:

# vhost_start websiteA.com
<VirtualHost public_ip:80>
ServerName websiteA.com
ServerAlias www.websiteA.com
ServerAdmin ***@gmail.com
DocumentRoot "/home/folder1/public_html"
ScriptAlias /cgi-bin/ "/home/folder1/public_html/cgi-bin/
#
# Custom settings are loaded below this line (if any exist)
# Include "/usr/local/apache/conf/userdata/usr1/websiteA.com/*.conf

<IfModule mod_suexec.c>
        SuexecUserGroup usr1 usr1
</IfModule>

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

<Directory "/home/usr1/public_html">
        AllowOverride All
</Directory>

</VirtualHost>
# vhost_end websiteA.com


# vhost_start websiteB.com
<VirtualHost public_ip:80>
ServerName websiteB.com
ServerAlias www.websiteB.com
ServerAdmin ***@gmail.com
DocumentRoot "/home/folder2/public_html"
ScriptAlias /cgi-bin/ "/home/folder2/public_html/cgi-bin/
#
# Custom settings are loaded below this line (if any exist)
# Include "/usr/local/apache/conf/userdata/usr2/websiteB.com/*.conf

<IfModule mod_suexec.c>
        SuexecUserGroup usr2 usr2
</IfModule>

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

<Directory "/home/usr2/public_html">
        AllowOverride All
</Directory>

</VirtualHost>
# vhost_end websiteB.com

Pages: [1]