This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:80> | |
ServerName test.com | |
ServerAlias test.com | |
ServerAdmin webmaster@localhost | |
#PassengerAppEnv staging | |
DocumentRoot /var/www/html/ruta_al_proyecto | |
#Redirect "/" "https://test.com/" | |
<Directory "/var/www/html/ruta_al_proyecto"> | |
#DirectoryIndex index.php | |
Options +Indexes +FollowSymLinks +MultiViews | |
AllowOverride All | |
Allow from All | |
Require all granted | |
</Directory> | |
ErrorLog ${APACHE_LOG_DIR}/error.log | |
CustomLog ${APACHE_LOG_DIR}/access.log combined | |
</VirtualHost> | |
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment