Last active
June 11, 2019 14:12
-
-
Save jcavat/388a3d7ed774acde191a1c64d9eee609 to your computer and use it in GitHub Desktop.
Revisions
-
jcavat revised this gist
Mar 20, 2018 . 1 changed file with 9 additions and 0 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 @@ -0,0 +1,9 @@ <IfModule mod_rewrite.c> Options Indexes FollowSymLinks RewriteEngine On RewriteBase / RewriteRule ^index\.html$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.html [L] </IfModule> -
jcavat revised this gist
Jun 2, 2017 . 1 changed file with 6 additions and 0 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 @@ -0,0 +1,6 @@ docker cp ../abaplan-core/index.html abaplans_www_1:/var/www/html/ docker cp ../abaplan-core/assets/ abaplans_www_1:/var/www/html/ docker cp ../abaplan-core/dist/ abaplans_www_1:/var/www/html/ docker cp ../abaplan-core/i18n/ abaplans_www_1:/var/www/html/ docker cp .htaccess abaplans_www_1:/var/www/html/ docker exec abaplans_www_1 sh -c 'rm /var/www/html/dist/*.js.map' -
jcavat created this gist
Jun 2, 2017 .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,2 @@ FROM php:7.1.2-apache RUN a2enmod rewrite 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,6 @@ version: "2" services: www: build: . ports: - "8080:80"