-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[BIG F**** FAT COMMIT] Added libs to Git, modified everything to work…
… on prod
- Loading branch information
Showing
416 changed files
with
55,468 additions
and
148 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
composer.phar | ||
libraries/vendor/ | ||
libraries/composer.lock | ||
.idea/ | ||
templates_c/ | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,18 @@ | ||
RewriteEngine On | ||
|
||
# Stop processing if already in the /public directory | ||
# Stop processing if already in the /public directory or in the /well-known/acme-challenge | ||
RewriteRule ^public/ - [L] | ||
RewriteRule ^.well-known/acme-challenge - [L] | ||
|
||
# Static resources if they exist | ||
RewriteCond %{DOCUMENT_ROOT}/public/$1 -f | ||
RewriteRule (.+) public/$1 [L] | ||
RewriteCond %{DOCUMENT_ROOT}/.well-known/acme-challenge/$1 -f | ||
RewriteRule (.+) .well-known/acme-challenge/$1 [L] | ||
|
||
RewriteCond %{DOCUMENT_ROOT}/.well-known/acme-challenge/$1 -f | ||
RewriteRule (.+) .well-known/acme-challenge/$1 [L] | ||
|
||
RewriteCond %{HTTPS} off | ||
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L] | ||
|
||
# Route all other requests | ||
RewriteRule (.*) index.php?path=$1 [L,QSA] |
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
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?php | ||
|
||
// autoload.php @generated by Composer | ||
|
||
require_once __DIR__ . '/composer/autoload_real.php'; | ||
|
||
return ComposerAutoloaderInit5ec2f8f1e8759137c597ed554f38aa36::getLoader(); |
Oops, something went wrong.