├── LICENSE ├── Magneto ├── Dockerfile ├── Magento-CE-2.1.5.tar.gz ├── README.md ├── azuredeploy.json ├── entrypoint.sh ├── httpd-magento.conf ├── httpd-modules.conf ├── httpd-php.conf ├── httpd-phpmyadmin.conf ├── httpd.conf ├── php-log.ini ├── php-opcache.ini ├── php.ini └── phpmyadmin-config.inc.php ├── README.md ├── Wordpress ├── 0.1 │ ├── Dockerfile │ ├── README.md │ ├── azuredeploy.json │ ├── entrypoint.sh │ ├── httpd-modules.conf │ ├── httpd-php.conf │ ├── httpd-phpmyadmin.conf │ ├── httpd-wordpress.conf │ ├── httpd.conf │ ├── php-opcache.ini │ ├── php.ini │ ├── phpmyadmin-config.inc.php │ └── wp-config.php.microsoft ├── 0.2 │ ├── Dockerfile │ ├── README.md │ ├── azuredeploy.json │ ├── entrypoint.sh │ ├── httpd-modules.conf │ ├── httpd-php.conf │ ├── httpd-phpmyadmin.conf │ ├── httpd-wordpress.conf │ ├── httpd.conf │ ├── php-opcache.ini │ ├── php.ini │ ├── phpmyadmin-config.inc.php │ ├── sshd_config │ └── wp-config.php.microsoft ├── 0.3 │ ├── Dockerfile │ ├── entrypoint.sh │ ├── httpd-modules.conf │ ├── httpd-php.conf │ ├── httpd-phpmyadmin.conf │ ├── httpd-wordpress.conf │ ├── httpd.conf │ ├── php-opcache.ini │ ├── php.ini │ ├── phpmyadmin-config.inc.php │ ├── sshd_config │ └── wp-config.php.microsoft ├── LICENSE ├── README.md └── azuredeploy.json ├── apache-php-mysql ├── 0.1 │ ├── Dockerfile │ ├── README.md │ ├── azuredeploy.json │ ├── entrypoint.sh │ ├── httpd-modules.conf │ ├── httpd-php.conf │ ├── httpd-phpmyadmin.conf │ ├── httpd.conf │ ├── mariadb.cnf │ ├── php-opcache.ini │ ├── php.ini │ ├── phpmyadmin-config.inc.php │ └── sshd_config ├── 0.2 │ ├── Dockerfile │ ├── entrypoint.sh │ ├── httpd-modules.conf │ ├── httpd-php.conf │ ├── httpd-phpmyadmin.conf │ ├── httpd.conf │ ├── mariadb.cnf │ ├── php-opcache.ini │ ├── php.ini │ ├── phpmyadmin-config.inc.php │ └── sshd_config ├── 0.3 │ ├── Dockerfile │ ├── entrypoint.sh │ ├── httpd-modules.conf │ ├── httpd-php.conf │ ├── httpd-phpmyadmin.conf │ ├── httpd.conf │ ├── mariadb.cnf │ ├── php-opcache.ini │ ├── php.ini │ ├── phpmyadmin-config.inc.php │ └── sshd_config ├── 0.4 │ ├── Dockerfile │ ├── entrypoint.sh │ ├── httpd-modules.conf │ ├── httpd-php.conf │ ├── httpd-phpmyadmin.conf │ ├── httpd.conf │ ├── mariadb.cnf │ ├── php-opcache.ini │ ├── php.ini │ ├── phpmyadmin-config.inc.php │ └── sshd_config ├── LICENSE └── README.md ├── apache-php-postgresql └── 0.1 │ ├── Dockerfile │ ├── LICENSE │ ├── README.md │ ├── azuredeploy.json │ ├── entrypoint.sh │ ├── httpd-modules.conf │ ├── httpd-php.conf │ ├── httpd.conf │ ├── php-opcache.ini │ ├── php.ini │ └── sshd_config └── nginx ├── Dockerfile ├── README.md ├── hostingstart.html ├── init_container.sh ├── nginx.conf ├── sshd_config └── supervisord.conf /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/LICENSE -------------------------------------------------------------------------------- /Magneto/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Magneto/Dockerfile -------------------------------------------------------------------------------- /Magneto/Magento-CE-2.1.5.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Magneto/Magento-CE-2.1.5.tar.gz -------------------------------------------------------------------------------- /Magneto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Magneto/README.md -------------------------------------------------------------------------------- /Magneto/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Magneto/azuredeploy.json -------------------------------------------------------------------------------- /Magneto/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Magneto/entrypoint.sh -------------------------------------------------------------------------------- /Magneto/httpd-magento.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Magneto/httpd-magento.conf -------------------------------------------------------------------------------- /Magneto/httpd-modules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Magneto/httpd-modules.conf -------------------------------------------------------------------------------- /Magneto/httpd-php.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Magneto/httpd-php.conf -------------------------------------------------------------------------------- /Magneto/httpd-phpmyadmin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Magneto/httpd-phpmyadmin.conf -------------------------------------------------------------------------------- /Magneto/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Magneto/httpd.conf -------------------------------------------------------------------------------- /Magneto/php-log.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Magneto/php-log.ini -------------------------------------------------------------------------------- /Magneto/php-opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Magneto/php-opcache.ini -------------------------------------------------------------------------------- /Magneto/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Magneto/php.ini -------------------------------------------------------------------------------- /Magneto/phpmyadmin-config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Magneto/phpmyadmin-config.inc.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/README.md -------------------------------------------------------------------------------- /Wordpress/0.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.1/Dockerfile -------------------------------------------------------------------------------- /Wordpress/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.1/README.md -------------------------------------------------------------------------------- /Wordpress/0.1/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.1/azuredeploy.json -------------------------------------------------------------------------------- /Wordpress/0.1/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.1/entrypoint.sh -------------------------------------------------------------------------------- /Wordpress/0.1/httpd-modules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.1/httpd-modules.conf -------------------------------------------------------------------------------- /Wordpress/0.1/httpd-php.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.1/httpd-php.conf -------------------------------------------------------------------------------- /Wordpress/0.1/httpd-phpmyadmin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.1/httpd-phpmyadmin.conf -------------------------------------------------------------------------------- /Wordpress/0.1/httpd-wordpress.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.1/httpd-wordpress.conf -------------------------------------------------------------------------------- /Wordpress/0.1/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.1/httpd.conf -------------------------------------------------------------------------------- /Wordpress/0.1/php-opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.1/php-opcache.ini -------------------------------------------------------------------------------- /Wordpress/0.1/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.1/php.ini -------------------------------------------------------------------------------- /Wordpress/0.1/phpmyadmin-config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.1/phpmyadmin-config.inc.php -------------------------------------------------------------------------------- /Wordpress/0.1/wp-config.php.microsoft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.1/wp-config.php.microsoft -------------------------------------------------------------------------------- /Wordpress/0.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.2/Dockerfile -------------------------------------------------------------------------------- /Wordpress/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.2/README.md -------------------------------------------------------------------------------- /Wordpress/0.2/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.2/azuredeploy.json -------------------------------------------------------------------------------- /Wordpress/0.2/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.2/entrypoint.sh -------------------------------------------------------------------------------- /Wordpress/0.2/httpd-modules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.2/httpd-modules.conf -------------------------------------------------------------------------------- /Wordpress/0.2/httpd-php.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.2/httpd-php.conf -------------------------------------------------------------------------------- /Wordpress/0.2/httpd-phpmyadmin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.2/httpd-phpmyadmin.conf -------------------------------------------------------------------------------- /Wordpress/0.2/httpd-wordpress.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.2/httpd-wordpress.conf -------------------------------------------------------------------------------- /Wordpress/0.2/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.2/httpd.conf -------------------------------------------------------------------------------- /Wordpress/0.2/php-opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.2/php-opcache.ini -------------------------------------------------------------------------------- /Wordpress/0.2/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.2/php.ini -------------------------------------------------------------------------------- /Wordpress/0.2/phpmyadmin-config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.2/phpmyadmin-config.inc.php -------------------------------------------------------------------------------- /Wordpress/0.2/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.2/sshd_config -------------------------------------------------------------------------------- /Wordpress/0.2/wp-config.php.microsoft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.2/wp-config.php.microsoft -------------------------------------------------------------------------------- /Wordpress/0.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.3/Dockerfile -------------------------------------------------------------------------------- /Wordpress/0.3/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.3/entrypoint.sh -------------------------------------------------------------------------------- /Wordpress/0.3/httpd-modules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.3/httpd-modules.conf -------------------------------------------------------------------------------- /Wordpress/0.3/httpd-php.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.3/httpd-php.conf -------------------------------------------------------------------------------- /Wordpress/0.3/httpd-phpmyadmin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.3/httpd-phpmyadmin.conf -------------------------------------------------------------------------------- /Wordpress/0.3/httpd-wordpress.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.3/httpd-wordpress.conf -------------------------------------------------------------------------------- /Wordpress/0.3/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.3/httpd.conf -------------------------------------------------------------------------------- /Wordpress/0.3/php-opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.3/php-opcache.ini -------------------------------------------------------------------------------- /Wordpress/0.3/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.3/php.ini -------------------------------------------------------------------------------- /Wordpress/0.3/phpmyadmin-config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.3/phpmyadmin-config.inc.php -------------------------------------------------------------------------------- /Wordpress/0.3/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.3/sshd_config -------------------------------------------------------------------------------- /Wordpress/0.3/wp-config.php.microsoft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/0.3/wp-config.php.microsoft -------------------------------------------------------------------------------- /Wordpress/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/LICENSE -------------------------------------------------------------------------------- /Wordpress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/README.md -------------------------------------------------------------------------------- /Wordpress/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/Wordpress/azuredeploy.json -------------------------------------------------------------------------------- /apache-php-mysql/0.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.1/Dockerfile -------------------------------------------------------------------------------- /apache-php-mysql/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.1/README.md -------------------------------------------------------------------------------- /apache-php-mysql/0.1/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.1/azuredeploy.json -------------------------------------------------------------------------------- /apache-php-mysql/0.1/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.1/entrypoint.sh -------------------------------------------------------------------------------- /apache-php-mysql/0.1/httpd-modules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.1/httpd-modules.conf -------------------------------------------------------------------------------- /apache-php-mysql/0.1/httpd-php.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.1/httpd-php.conf -------------------------------------------------------------------------------- /apache-php-mysql/0.1/httpd-phpmyadmin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.1/httpd-phpmyadmin.conf -------------------------------------------------------------------------------- /apache-php-mysql/0.1/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.1/httpd.conf -------------------------------------------------------------------------------- /apache-php-mysql/0.1/mariadb.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.1/mariadb.cnf -------------------------------------------------------------------------------- /apache-php-mysql/0.1/php-opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.1/php-opcache.ini -------------------------------------------------------------------------------- /apache-php-mysql/0.1/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.1/php.ini -------------------------------------------------------------------------------- /apache-php-mysql/0.1/phpmyadmin-config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.1/phpmyadmin-config.inc.php -------------------------------------------------------------------------------- /apache-php-mysql/0.1/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.1/sshd_config -------------------------------------------------------------------------------- /apache-php-mysql/0.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.2/Dockerfile -------------------------------------------------------------------------------- /apache-php-mysql/0.2/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.2/entrypoint.sh -------------------------------------------------------------------------------- /apache-php-mysql/0.2/httpd-modules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.2/httpd-modules.conf -------------------------------------------------------------------------------- /apache-php-mysql/0.2/httpd-php.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.2/httpd-php.conf -------------------------------------------------------------------------------- /apache-php-mysql/0.2/httpd-phpmyadmin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.2/httpd-phpmyadmin.conf -------------------------------------------------------------------------------- /apache-php-mysql/0.2/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.2/httpd.conf -------------------------------------------------------------------------------- /apache-php-mysql/0.2/mariadb.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.2/mariadb.cnf -------------------------------------------------------------------------------- /apache-php-mysql/0.2/php-opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.2/php-opcache.ini -------------------------------------------------------------------------------- /apache-php-mysql/0.2/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.2/php.ini -------------------------------------------------------------------------------- /apache-php-mysql/0.2/phpmyadmin-config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.2/phpmyadmin-config.inc.php -------------------------------------------------------------------------------- /apache-php-mysql/0.2/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.2/sshd_config -------------------------------------------------------------------------------- /apache-php-mysql/0.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.3/Dockerfile -------------------------------------------------------------------------------- /apache-php-mysql/0.3/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.3/entrypoint.sh -------------------------------------------------------------------------------- /apache-php-mysql/0.3/httpd-modules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.3/httpd-modules.conf -------------------------------------------------------------------------------- /apache-php-mysql/0.3/httpd-php.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.3/httpd-php.conf -------------------------------------------------------------------------------- /apache-php-mysql/0.3/httpd-phpmyadmin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.3/httpd-phpmyadmin.conf -------------------------------------------------------------------------------- /apache-php-mysql/0.3/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.3/httpd.conf -------------------------------------------------------------------------------- /apache-php-mysql/0.3/mariadb.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.3/mariadb.cnf -------------------------------------------------------------------------------- /apache-php-mysql/0.3/php-opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.3/php-opcache.ini -------------------------------------------------------------------------------- /apache-php-mysql/0.3/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.3/php.ini -------------------------------------------------------------------------------- /apache-php-mysql/0.3/phpmyadmin-config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.3/phpmyadmin-config.inc.php -------------------------------------------------------------------------------- /apache-php-mysql/0.3/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.3/sshd_config -------------------------------------------------------------------------------- /apache-php-mysql/0.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.4/Dockerfile -------------------------------------------------------------------------------- /apache-php-mysql/0.4/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.4/entrypoint.sh -------------------------------------------------------------------------------- /apache-php-mysql/0.4/httpd-modules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.4/httpd-modules.conf -------------------------------------------------------------------------------- /apache-php-mysql/0.4/httpd-php.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.4/httpd-php.conf -------------------------------------------------------------------------------- /apache-php-mysql/0.4/httpd-phpmyadmin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.4/httpd-phpmyadmin.conf -------------------------------------------------------------------------------- /apache-php-mysql/0.4/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.4/httpd.conf -------------------------------------------------------------------------------- /apache-php-mysql/0.4/mariadb.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.4/mariadb.cnf -------------------------------------------------------------------------------- /apache-php-mysql/0.4/php-opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.4/php-opcache.ini -------------------------------------------------------------------------------- /apache-php-mysql/0.4/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.4/php.ini -------------------------------------------------------------------------------- /apache-php-mysql/0.4/phpmyadmin-config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.4/phpmyadmin-config.inc.php -------------------------------------------------------------------------------- /apache-php-mysql/0.4/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/0.4/sshd_config -------------------------------------------------------------------------------- /apache-php-mysql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/LICENSE -------------------------------------------------------------------------------- /apache-php-mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-mysql/README.md -------------------------------------------------------------------------------- /apache-php-postgresql/0.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-postgresql/0.1/Dockerfile -------------------------------------------------------------------------------- /apache-php-postgresql/0.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-postgresql/0.1/LICENSE -------------------------------------------------------------------------------- /apache-php-postgresql/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-postgresql/0.1/README.md -------------------------------------------------------------------------------- /apache-php-postgresql/0.1/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-postgresql/0.1/azuredeploy.json -------------------------------------------------------------------------------- /apache-php-postgresql/0.1/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-postgresql/0.1/entrypoint.sh -------------------------------------------------------------------------------- /apache-php-postgresql/0.1/httpd-modules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-postgresql/0.1/httpd-modules.conf -------------------------------------------------------------------------------- /apache-php-postgresql/0.1/httpd-php.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-postgresql/0.1/httpd-php.conf -------------------------------------------------------------------------------- /apache-php-postgresql/0.1/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-postgresql/0.1/httpd.conf -------------------------------------------------------------------------------- /apache-php-postgresql/0.1/php-opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-postgresql/0.1/php-opcache.ini -------------------------------------------------------------------------------- /apache-php-postgresql/0.1/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-postgresql/0.1/php.ini -------------------------------------------------------------------------------- /apache-php-postgresql/0.1/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/apache-php-postgresql/0.1/sshd_config -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/nginx/README.md -------------------------------------------------------------------------------- /nginx/hostingstart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/nginx/hostingstart.html -------------------------------------------------------------------------------- /nginx/init_container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/nginx/init_container.sh -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /nginx/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/nginx/sshd_config -------------------------------------------------------------------------------- /nginx/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-App-Service/apps/HEAD/nginx/supervisord.conf --------------------------------------------------------------------------------