Last active
February 3, 2023 05:19
Revisions
-
gistwebdev revised this gist
Jun 2, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ <VirtualHost *:80> ServerAdmin template.email ServerName template.url DocumentRoot template.webroot -
gistwebdev revised this gist
Jun 2, 2013 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -2,12 +2,12 @@ ServerAdmin webmaster@localhost ServerName template.url DocumentRoot template.webroot <Directory /> Options FollowSymLinks AllowOverride All </Directory> <Directory template.webroot/> Options Indexes FollowSymLinks MultiViews AllowOverride All Order allow,deny -
gistwebdev revised this gist
Jun 1, 2013 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,13 +1,13 @@ <VirtualHost *:80> ServerAdmin webmaster@localhost ServerName template.url DocumentRoot webroot <Directory /> Options FollowSymLinks AllowOverride All </Directory> <Directory webroot/> Options Indexes FollowSymLinks MultiViews AllowOverride All Order allow,deny -
gistwebdev renamed this gist
May 24, 2013 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
gistwebdev renamed this gist
May 24, 2013 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
gistwebdev created this gist
May 23, 2013 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,32 @@ <VirtualHost *:80> ServerAdmin webmaster@localhost ServerName template.local DocumentRoot /home/username/www/template <Directory /> Options FollowSymLinks AllowOverride All </Directory> <Directory /home/username/www/template/> Options Indexes FollowSymLinks MultiViews AllowOverride All Order allow,deny allow from All </Directory> ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ <Directory "/usr/lib/cgi-bin"> AllowOverride All Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch Order allow,deny Allow from all </Directory> ErrorLog ${APACHE_LOG_DIR}/error.log # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. LogLevel warn CustomLog ${APACHE_LOG_DIR}/access.log combined </VirtualHost>