Userdir en Vesta
Posted: Wed Aug 13, 2014 5:32 pm
Ejemplo de configuracion en Ubuntu 14.
Editar la configuracion de "userdir".
nano /etc/apache2/mods-enabled/userdir.conf
---------------------------------
<IfModule mod_userdir.c>
UserDir web
UserDir disabled root
<Directory /home/*/web/>
#AllowOverride FileInfo AuthConfig Limit Indexes
#Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
AllowOverride All
Options ExecCGI
<Limit GET POST OPTIONS>
Require all granted
</Limit>
<LimitExcept GET POST OPTIONS>
Require all denied
</LimitExcept>
</Directory>
</IfModule>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
---------------------------------------------------------------
Editar /etc/apache2/mods-enabled/php.conf
-------------------------------------------------------------
FilesMatch ".+\.ph(p[345]?|t|tml)$">
SetHandler application/x-httpd-php
</FilesMatch>
<FilesMatch ".+\.phps$">
SetHandler application/x-httpd-php-source
# Deny access to raw php sources by default
# To re-enable it's recommended to enable access to the files
# only in specific virtual host or directory
Order Deny,Allow
Deny from all
</FilesMatch>
# Deny access to files without filename (e.g. '.php')
<FilesMatch "^\.ph(p[345]?|t|tml|ps)$">
Order Deny,Allow
Deny from all
</FilesMatch>
# Running PHP scripts in user directories is disabled by default
#
# To re-enable PHP in user directories comment the following lines
# (from <IfModule ...> to </IfModule>.) Do NOT set it to On as it
# prevents .htaccess files from disabling it.
<IfModule mod_userdir.c>
<Directory /home/*/web>
#php_admin_flag engine On
</Directory>
</IfModule>
---------------------------------------------------------
Ejemplo de Acceso URL
http://<ip>/~<user>/<dominio1>/public_html/
http://<ip>/~<user>/<dominio2>/public_html/
Espero les sirva....
Saludos.
Editar la configuracion de "userdir".
nano /etc/apache2/mods-enabled/userdir.conf
---------------------------------
<IfModule mod_userdir.c>
UserDir web
UserDir disabled root
<Directory /home/*/web/>
#AllowOverride FileInfo AuthConfig Limit Indexes
#Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
AllowOverride All
Options ExecCGI
<Limit GET POST OPTIONS>
Require all granted
</Limit>
<LimitExcept GET POST OPTIONS>
Require all denied
</LimitExcept>
</Directory>
</IfModule>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
---------------------------------------------------------------
Editar /etc/apache2/mods-enabled/php.conf
-------------------------------------------------------------
FilesMatch ".+\.ph(p[345]?|t|tml)$">
SetHandler application/x-httpd-php
</FilesMatch>
<FilesMatch ".+\.phps$">
SetHandler application/x-httpd-php-source
# Deny access to raw php sources by default
# To re-enable it's recommended to enable access to the files
# only in specific virtual host or directory
Order Deny,Allow
Deny from all
</FilesMatch>
# Deny access to files without filename (e.g. '.php')
<FilesMatch "^\.ph(p[345]?|t|tml|ps)$">
Order Deny,Allow
Deny from all
</FilesMatch>
# Running PHP scripts in user directories is disabled by default
#
# To re-enable PHP in user directories comment the following lines
# (from <IfModule ...> to </IfModule>.) Do NOT set it to On as it
# prevents .htaccess files from disabling it.
<IfModule mod_userdir.c>
<Directory /home/*/web>
#php_admin_flag engine On
</Directory>
</IfModule>
---------------------------------------------------------
Ejemplo de Acceso URL
http://<ip>/~<user>/<dominio1>/public_html/
http://<ip>/~<user>/<dominio2>/public_html/
Espero les sirva....
Saludos.