Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurMinfotel committed Dec 3, 2024
0 parents commit 18a8626
Show file tree
Hide file tree
Showing 2,791 changed files with 2,862,146 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
/config/cache.php
/config/config_db*
/config/glpi.key
/config/glpicrypt.key
/config/local_define.php
/tests/config_db*
/tests/cache.php
/marketplace/*
!/marketplace/.gitkeep
/plugins/*
!/plugins/.gitkeep
/files/*/*
!/files/*/.gitkeep
/.buildpath
/.project
/.settings/
/.vscode/
/.idea/
/tools/composer.lock
/tools/vendor/
/tools/api/
/tools/htmlcov/
/vendor/*
!/vendor/.htaccess
phpunit.xml
/tests/code-coverage/
/tests/coverage-*/
/tests/files/
/tests/.env
/tests/glpicrypt.key
/config/based_config.php
/config/config.php
/config/define.php
/nbproject
.composer.hash
/**/*.min.css
/css_compiled/
/css/compiled/
/css/lib/
/**/*.min.js
/node_modules/
.package.hash
/public/build/
/public/lib/
/tests/web/error.log
/inventory-vendors/*.json
/locales/*.mo
/inc/downstream.php
/docker-compose.override.yaml
/.devcontainer/docker-compose.override.yaml
/.phpunit.result.cache
/phpunit/files/
/phpunit/config
27 changes: 27 additions & 0 deletions .htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# If you have problem with session.auto_start or session.use_trans_sid on install
# you need to set these configuration values to 0 in php.ini or uncomment these lines
#php_value session.auto_start 0
#php_value session.use_trans_sid 0


# The following lines enable the apache rewriting for the api. You can use url like http://glpi/api/.
#<IfModule mod_rewrite.c>
# RewriteEngine On
# RewriteCond %{REQUEST_FILENAME} !-f
# RewriteCond %{REQUEST_FILENAME} !-d
# RewriteRule api/(.*)$ apirest.php/$1
#</IfModule>


# You can uncomment following lines to enable caching of web assets (pictures, javascript files, etc)
#<IfModule mod_expires.c>
# ExpiresActive On
# ExpiresByType image/jpg "access 1 year"
# ExpiresByType image/jpeg "access 1 year"
# ExpiresByType image/gif "access 1 year"
# ExpiresByType image/png "access 1 year"
# ExpiresByType text/css "access 1 year"
# ExpiresByType text/x-javascript "access 1 year"
# ExpiresByType text/javascript "access 1 year"
# ExpiresByType application/javascript "access 1 year"
#</IfModule>
Loading

0 comments on commit 18a8626

Please sign in to comment.