2016-10-09 16:47:49 +00:00
|
|
|
# Note:
|
|
|
|
# To effectively apply the changes you will have
|
|
|
|
# to re-index the git index (if there are already
|
|
|
|
# commited files)
|
|
|
|
#
|
2020-11-12 14:10:51 +00:00
|
|
|
# $ git rm -r -f --cached .
|
2016-10-09 16:47:49 +00:00
|
|
|
# $ git add .
|
|
|
|
# $ git commit -m ".gitignore index rebuild"
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
######################################
|
|
|
|
# CUSTOM
|
|
|
|
######################################
|
|
|
|
|
2018-10-09 07:50:34 +00:00
|
|
|
# Ignore variable data
|
2017-04-22 09:58:17 +00:00
|
|
|
/.env
|
2018-10-09 07:50:34 +00:00
|
|
|
/backups/*
|
|
|
|
|
|
|
|
# Ignore Data dirs
|
|
|
|
/data/www/*
|
2016-10-09 16:47:49 +00:00
|
|
|
|
2018-04-30 18:49:02 +00:00
|
|
|
# Ignore Certificate Authority
|
|
|
|
/ca/*
|
|
|
|
|
2018-04-19 11:47:28 +00:00
|
|
|
# Ignore compose override file
|
2018-10-09 07:50:34 +00:00
|
|
|
/docker-compose.override.yml
|
2018-04-19 11:47:28 +00:00
|
|
|
|
2020-11-12 14:10:51 +00:00
|
|
|
# Ignore logs
|
|
|
|
/log/apache-2.2/*
|
|
|
|
/log/apache-2.4/*
|
|
|
|
/log/mariadb-10.3/*
|
|
|
|
/log/nginx-mainline/*
|
|
|
|
/log/nginx-stable/*
|
|
|
|
/log/php-fpm-5.2/*
|
|
|
|
/log/php-fpm-5.3/*
|
|
|
|
/log/php-fpm-5.4/*
|
|
|
|
/log/php-fpm-5.5/*
|
|
|
|
/log/php-fpm-5.6/*
|
|
|
|
/log/php-fpm-7.0/*
|
|
|
|
/log/php-fpm-7.1/*
|
|
|
|
/log/php-fpm-7.2/*
|
|
|
|
/log/php-fpm-7.3/*
|
|
|
|
/log/php-fpm-7.4/*
|
|
|
|
/log/php-fpm-8.0/*
|
|
|
|
/log/php-fpm-8.1/*
|
|
|
|
!/log/.keepme
|
|
|
|
!/log/*/.keepme
|
|
|
|
|
|
|
|
|
2018-08-05 17:24:42 +00:00
|
|
|
# Ignore custom global vhost gen templates
|
|
|
|
/cfg/vhost-gen/apache22.conf
|
|
|
|
/cfg/vhost-gen/apache24.conf
|
|
|
|
/cfg/vhost-gen/nginx.conf
|
|
|
|
|
2017-09-26 17:39:38 +00:00
|
|
|
# Ignore custom HTTPD configs
|
|
|
|
/cfg/apache-2.2/*.conf
|
|
|
|
/cfg/apache-2.4/*.conf
|
|
|
|
/cfg/nginx-stable/*.conf
|
|
|
|
/cfg/nginx-mainline/*.conf
|
|
|
|
|
2016-10-16 10:07:29 +00:00
|
|
|
# Ignore custom MySQL configs
|
2017-04-22 09:58:17 +00:00
|
|
|
/cfg/mysql-5.5/*.cnf
|
|
|
|
/cfg/mysql-5.6/*.cnf
|
|
|
|
/cfg/mysql-5.7/*.cnf
|
|
|
|
/cfg/mysql-8.0/*.cnf
|
2019-03-01 12:59:33 +00:00
|
|
|
/cfg/mariadb-5.5/*.cnf
|
2017-04-22 09:58:17 +00:00
|
|
|
/cfg/mariadb-10.0/*.cnf
|
|
|
|
/cfg/mariadb-10.1/*.cnf
|
|
|
|
/cfg/mariadb-10.2/*.cnf
|
2019-02-28 13:31:18 +00:00
|
|
|
/cfg/mariadb-10.3/*.cnf
|
|
|
|
/cfg/mariadb-10.4/*.cnf
|
2020-11-12 13:19:49 +00:00
|
|
|
/cfg/mariadb-10.5/*.cnf
|
2017-07-01 16:54:09 +00:00
|
|
|
/cfg/percona-5.5/*.cnf
|
|
|
|
/cfg/percona-5.6/*.cnf
|
|
|
|
/cfg/percona-5.7/*.cnf
|
2019-02-28 13:31:18 +00:00
|
|
|
/cfg/percona-8.0/*.cnf
|
2016-10-16 10:07:29 +00:00
|
|
|
|
2018-04-07 16:46:37 +00:00
|
|
|
# Ignore custom PHP.ini configs
|
2018-08-04 00:12:22 +00:00
|
|
|
/cfg/php-ini-5.2/*.ini
|
|
|
|
/cfg/php-ini-5.3/*.ini
|
2018-04-07 16:46:37 +00:00
|
|
|
/cfg/php-ini-5.4/*.ini
|
|
|
|
/cfg/php-ini-5.5/*.ini
|
|
|
|
/cfg/php-ini-5.6/*.ini
|
|
|
|
/cfg/php-ini-7.0/*.ini
|
|
|
|
/cfg/php-ini-7.1/*.ini
|
|
|
|
/cfg/php-ini-7.2/*.ini
|
2018-08-04 00:12:22 +00:00
|
|
|
/cfg/php-ini-7.3/*.ini
|
2018-11-02 21:55:15 +00:00
|
|
|
/cfg/php-ini-7.4/*.ini
|
2019-02-09 15:51:40 +00:00
|
|
|
/cfg/php-ini-8.0/*.ini
|
2016-10-09 16:47:49 +00:00
|
|
|
|
2018-04-07 16:46:37 +00:00
|
|
|
# Ignore custom PHP-FPM configs
|
2018-08-04 00:12:22 +00:00
|
|
|
/cfg/php-fpm-5.2/php-fpm.xml
|
|
|
|
/cfg/php-fpm-5.3/*.conf
|
2018-04-07 16:46:37 +00:00
|
|
|
/cfg/php-fpm-5.4/*.conf
|
|
|
|
/cfg/php-fpm-5.5/*.conf
|
|
|
|
/cfg/php-fpm-5.6/*.conf
|
|
|
|
/cfg/php-fpm-7.0/*.conf
|
|
|
|
/cfg/php-fpm-7.1/*.conf
|
|
|
|
/cfg/php-fpm-7.2/*.conf
|
2018-08-04 00:12:22 +00:00
|
|
|
/cfg/php-fpm-7.3/*.conf
|
2018-11-02 21:55:15 +00:00
|
|
|
/cfg/php-fpm-7.4/*.conf
|
2019-02-09 15:51:40 +00:00
|
|
|
/cfg/php-fpm-8.0/*.conf
|
2020-11-12 13:19:49 +00:00
|
|
|
/cfg/php-fpm-8.1/*.conf
|
2018-04-07 16:46:37 +00:00
|
|
|
|
2018-12-25 15:39:48 +00:00
|
|
|
# Ignore custom PHP-FPM startup scripts
|
2018-12-28 23:19:54 +00:00
|
|
|
/autostart/*.sh
|
2018-12-26 16:36:09 +00:00
|
|
|
/cfg/php-startup-5.2/*.sh
|
|
|
|
/cfg/php-startup-5.3/*.sh
|
|
|
|
/cfg/php-startup-5.4/*.sh
|
|
|
|
/cfg/php-startup-5.5/*.sh
|
|
|
|
/cfg/php-startup-5.6/*.sh
|
|
|
|
/cfg/php-startup-7.0/*.sh
|
|
|
|
/cfg/php-startup-7.1/*.sh
|
|
|
|
/cfg/php-startup-7.2/*.sh
|
|
|
|
/cfg/php-startup-7.3/*.sh
|
|
|
|
/cfg/php-startup-7.4/*.sh
|
2019-02-09 15:51:40 +00:00
|
|
|
/cfg/php-startup-8.0/*.sh
|
2020-11-12 13:19:49 +00:00
|
|
|
/cfg/php-startup-8.1/*.sh
|
2018-12-25 15:39:48 +00:00
|
|
|
|
2019-02-17 10:53:43 +00:00
|
|
|
# Ignorecustom Varnish configs
|
|
|
|
/cfg/varnish-4/*.vcl
|
|
|
|
/cfg/varnish-5/*.vcl
|
|
|
|
/cfg/varnish-6/*.vcl
|
|
|
|
|
2017-08-12 09:05:39 +00:00
|
|
|
# Ignore custom PHP-FPM modules
|
2018-08-04 00:12:22 +00:00
|
|
|
/mod/php-fpm-5.2/*.so
|
|
|
|
/mod/php-fpm-5.3/*.so
|
2017-08-12 09:05:39 +00:00
|
|
|
/mod/php-fpm-5.4/*.so
|
|
|
|
/mod/php-fpm-5.5/*.so
|
|
|
|
/mod/php-fpm-5.6/*.so
|
|
|
|
/mod/php-fpm-7.0/*.so
|
|
|
|
/mod/php-fpm-7.1/*.so
|
|
|
|
/mod/php-fpm-7.2/*.so
|
2018-08-04 00:12:22 +00:00
|
|
|
/mod/php-fpm-7.3/*.so
|
2018-11-02 21:55:15 +00:00
|
|
|
/mod/php-fpm-7.4/*.so
|
2019-02-09 15:51:40 +00:00
|
|
|
/mod/php-fpm-8.0/*.so
|
2020-11-12 13:19:49 +00:00
|
|
|
/mod/php-fpm-8.1/*.so
|
2017-08-12 09:05:39 +00:00
|
|
|
|
2017-08-17 19:20:41 +00:00
|
|
|
# Ignore custom bash and other confi files
|
|
|
|
/bash/*
|
|
|
|
!/bash/bashrc.sh-example
|
|
|
|
!/bash/README.md
|
2016-10-09 16:47:49 +00:00
|
|
|
|
2018-03-17 09:40:20 +00:00
|
|
|
# Ignore documentation sphinx build
|
|
|
|
/docs/_build/
|
2018-04-11 07:22:31 +00:00
|
|
|
/docs/make.bat
|
2018-07-30 07:32:40 +00:00
|
|
|
/docs/linkcheck
|
2019-12-01 12:14:00 +00:00
|
|
|
/docs/venv
|
2018-06-03 17:16:22 +00:00
|
|
|
*.rst.todo
|
2018-03-17 09:40:20 +00:00
|
|
|
|
2018-12-29 12:11:51 +00:00
|
|
|
# Ignore vhost-gen files in test dir (copied on the fly)
|
2019-11-09 16:56:34 +00:00
|
|
|
/.tests/tmp/*
|
|
|
|
/.tests/www/*
|
|
|
|
!/.tests/www/modules
|
2020-11-12 14:10:51 +00:00
|
|
|
!/.tests/www/rproxy/js/index.js
|
2018-12-29 12:11:51 +00:00
|
|
|
|
2018-03-05 20:50:02 +00:00
|
|
|
# Keep folders
|
|
|
|
!.keepme
|
|
|
|
|
|
|
|
|
2016-10-09 16:47:49 +00:00
|
|
|
######################################
|
|
|
|
# GENERIC
|
|
|
|
######################################
|
|
|
|
|
|
|
|
###### std ######
|
|
|
|
.lock
|
|
|
|
|
|
|
|
###### patches/diffs ######
|
|
|
|
*.patch
|
|
|
|
*.diff
|
|
|
|
*.orig
|
|
|
|
*.rej
|
|
|
|
|
|
|
|
|
|
|
|
######################################
|
|
|
|
# Operating Systems
|
|
|
|
######################################
|
|
|
|
|
|
|
|
###### OSX ######
|
|
|
|
._*
|
|
|
|
.DS*
|
|
|
|
.Spotlight-V100
|
|
|
|
.Trashes
|
|
|
|
|
|
|
|
###### Windows ######
|
|
|
|
Thumbs.db
|
|
|
|
ehthumbs.db
|
|
|
|
Desktop.ini
|
|
|
|
$RECYCLE.BIN/
|
|
|
|
*.lnk
|
|
|
|
*.shortcut
|
|
|
|
|
|
|
|
######################################
|
|
|
|
# Editors
|
|
|
|
######################################
|
|
|
|
|
|
|
|
###### Sublime ######
|
|
|
|
*.sublime-workspace
|
|
|
|
*.sublime-project
|
|
|
|
|
|
|
|
###### Eclipse ######
|
|
|
|
.classpath
|
|
|
|
.buildpath
|
|
|
|
.project
|
|
|
|
.settings/
|
|
|
|
|
|
|
|
###### Netbeans ######
|
|
|
|
/nbproject/
|
|
|
|
|
|
|
|
###### Intellij IDE ######
|
|
|
|
.idea/
|
|
|
|
.idea_modules/
|
|
|
|
|
|
|
|
###### vim ######
|
|
|
|
*.swp
|
|
|
|
*.swo
|
2017-05-17 13:24:49 +00:00
|
|
|
*.swn
|
2017-06-17 11:09:12 +00:00
|
|
|
*.swm
|
2016-10-09 16:47:49 +00:00
|
|
|
*~
|
|
|
|
|
|
|
|
###### TextMate ######
|
|
|
|
.tm_properties
|
|
|
|
*.tmproj
|
|
|
|
|
|
|
|
###### BBEdit ######
|
|
|
|
*.bbprojectd
|
|
|
|
*.bbproject
|
2020-03-19 15:27:04 +00:00
|
|
|
|
|
|
|
###### VS Code ######
|
2020-11-12 13:19:49 +00:00
|
|
|
/.vscode
|