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 - hunter

Pages: [1]
1
Apache / [How?] Subdomain of main domain go to user folder
« on: July 20, 2016, 07:03:31 PM »
Hi!

My main domain of VPS server: MYcompany.com

I created a user account: sub1.mycompany.com

But, accessing this subdomain (sub1) is going to main domain...

I want create a subdomain account of main domain and this subdomain have its own folder and own ftp user.... :)

The VHOST of the created subdomain:

Code: [Select]
# vhost_start sub1.mycompany.com
<VirtualHost XX.XXXX.XXX.XX:80>
ServerName sub1.mycompany.com
ServerAlias www.sub1.mycompany.com
ServerAdmin mail@mail.com
DocumentRoot "/home/sub1/public_html"
ScriptAlias /cgi-bin/ "/home/sub1/public_html/cgi-bin/
#
# Custom settings are loaded below this line (if any exist)
# Include "/usr/local/apache/conf/userdata/sub1/sub1.mycompany.com/*.conf

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

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

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

</VirtualHost>
# vhost_end sub1.mycompany.com


Thanks a lot. :)

2
FTP / Is possible to create a USER to manage the main domain?
« on: July 20, 2016, 02:02:48 PM »
Hi!

I have the main domain of the CWP:
mycompany.com

But I want a user account to acess the FTP and manage the http files of this main domain.

How?

Because accessing with the root user is not good idea... '-'

Pages: [1]