| 123456789101112131415161718192021222324252627282930313233 |
- <VirtualHost *:80>
- ServerName angular-dev.foodgame.fr
- DocumentRoot /var/www/html/browser
- <Directory /var/www/html/browser>
- Options Indexes FollowSymLinks
- AllowOverride All
- Require all granted
- RewriteEngine On
- RewriteBase /
- RewriteRule ^index\.html$ - [L]
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteCond %{REQUEST_FILENAME} !-d
- RewriteRule . /index.html [L]
- </Directory>
- ErrorLog ${APACHE_LOG_DIR}/error.log
- CustomLog ${APACHE_LOG_DIR}/access.log combined
- </VirtualHost>
-
- <VirtualHost *:443>
- DocumentRoot /var/www/html/browser
- ServerName angular-dev.foodgame.fr
- ServerAlias angular-dev.foodgame.fr
- #SSLEnable
- #SSLEngine ON
- #SSLCertificateFile path/to/server.crt
- #SSLCertificateKeyFile path/to/server.key
- </VirtualHost>
|