Skip to content

Commit

Permalink
[TASK] add more VirtualHosts with TYPO3_CONTEXT
Browse files Browse the repository at this point in the history
  • Loading branch information
dmh committed Nov 16, 2018
1 parent 38084b6 commit 53058b9
Showing 1 changed file with 52 additions and 3 deletions.
55 changes: 52 additions & 3 deletions typo3.default.conf
Original file line number Diff line number Diff line change
@@ -1,14 +1,63 @@
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName t3kit9.local
DocumentRoot /var/www/html/public
SetEnv TYPO3_CONTEXT Development/Docker
SetEnv TYPO3_CONTEXT Development/t3kit9
<Directory /var/www/html/public/>
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
ErrorLog ${APACHE_LOG_DIR}/error_t3kit9.log
CustomLog ${APACHE_LOG_DIR}/access_t3kit9.log combined
</VirtualHost>

<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName t3kit9-sl.local
DocumentRoot /var/www/html/public
SetEnv TYPO3_CONTEXT Development/t3kit9-sqlite
<Directory /var/www/html/public/>
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error_t3kit9_sqlite.log
CustomLog ${APACHE_LOG_DIR}/access_t3kit9_sqlite.log combined
</VirtualHost>

<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName t3kit9-test.local
DocumentRoot /var/www/html/public
SetEnv TYPO3_CONTEXT Development/t3kit9-test
<Directory /var/www/html/public/>
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error_t3kit9_test.log
CustomLog ${APACHE_LOG_DIR}/access_t3kit9_test.log combined
</VirtualHost>

<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName t3kit9-prod.local
DocumentRoot /var/www/html/public
SetEnv TYPO3_CONTEXT Production
<Directory /var/www/html/public/>
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error_t3kit9_production.log
CustomLog ${APACHE_LOG_DIR}/access_t3kit9_production.log combined
</VirtualHost>

0 comments on commit 53058b9

Please sign in to comment.