├── .github ├── FUNDING.yml ├── dependabot.yml ├── logo-text.svg └── workflows │ └── push.yml ├── .gitignore ├── LICENSE ├── README.md ├── azuriom-install.sh └── conf ├── apache2 ├── 000-default.conf └── phpmyadmin.conf ├── cloudflare ├── 000-default.conf ├── apache2.conf └── remoteip.conf ├── cron └── cron ├── mysql └── default-auth-override.cnf └── nginx ├── azuriom.conf ├── azuriom_ssl.conf ├── cloudflare-ip-list.conf ├── general.conf ├── letsencrypt.conf ├── nginx.conf ├── php_fastcgi.conf ├── security.conf └── update-cloudflare-ip-list.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: MaximeMichaud 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzuriomCommunity/Script-AutoInstall/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/logo-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzuriomCommunity/Script-AutoInstall/HEAD/.github/logo-text.svg -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzuriomCommunity/Script-AutoInstall/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .idea/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzuriomCommunity/Script-AutoInstall/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzuriomCommunity/Script-AutoInstall/HEAD/README.md -------------------------------------------------------------------------------- /azuriom-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzuriomCommunity/Script-AutoInstall/HEAD/azuriom-install.sh -------------------------------------------------------------------------------- /conf/apache2/000-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzuriomCommunity/Script-AutoInstall/HEAD/conf/apache2/000-default.conf -------------------------------------------------------------------------------- /conf/apache2/phpmyadmin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzuriomCommunity/Script-AutoInstall/HEAD/conf/apache2/phpmyadmin.conf -------------------------------------------------------------------------------- /conf/cloudflare/000-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzuriomCommunity/Script-AutoInstall/HEAD/conf/cloudflare/000-default.conf -------------------------------------------------------------------------------- /conf/cloudflare/apache2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzuriomCommunity/Script-AutoInstall/HEAD/conf/cloudflare/apache2.conf -------------------------------------------------------------------------------- /conf/cloudflare/remoteip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzuriomCommunity/Script-AutoInstall/HEAD/conf/cloudflare/remoteip.conf -------------------------------------------------------------------------------- /conf/cron/cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzuriomCommunity/Script-AutoInstall/HEAD/conf/cron/cron -------------------------------------------------------------------------------- /conf/mysql/default-auth-override.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzuriomCommunity/Script-AutoInstall/HEAD/conf/mysql/default-auth-override.cnf -------------------------------------------------------------------------------- /conf/nginx/azuriom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzuriomCommunity/Script-AutoInstall/HEAD/conf/nginx/azuriom.conf -------------------------------------------------------------------------------- /conf/nginx/azuriom_ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzuriomCommunity/Script-AutoInstall/HEAD/conf/nginx/azuriom_ssl.conf -------------------------------------------------------------------------------- /conf/nginx/cloudflare-ip-list.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzuriomCommunity/Script-AutoInstall/HEAD/conf/nginx/cloudflare-ip-list.conf -------------------------------------------------------------------------------- /conf/nginx/general.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzuriomCommunity/Script-AutoInstall/HEAD/conf/nginx/general.conf -------------------------------------------------------------------------------- /conf/nginx/letsencrypt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzuriomCommunity/Script-AutoInstall/HEAD/conf/nginx/letsencrypt.conf -------------------------------------------------------------------------------- /conf/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzuriomCommunity/Script-AutoInstall/HEAD/conf/nginx/nginx.conf -------------------------------------------------------------------------------- /conf/nginx/php_fastcgi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzuriomCommunity/Script-AutoInstall/HEAD/conf/nginx/php_fastcgi.conf -------------------------------------------------------------------------------- /conf/nginx/security.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzuriomCommunity/Script-AutoInstall/HEAD/conf/nginx/security.conf -------------------------------------------------------------------------------- /conf/nginx/update-cloudflare-ip-list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzuriomCommunity/Script-AutoInstall/HEAD/conf/nginx/update-cloudflare-ip-list.sh --------------------------------------------------------------------------------