├── .gitignore ├── LICENSE ├── README.md ├── bakery.php ├── certificates └── README.md ├── config.php ├── cookbooks ├── bigace-v2.php ├── bigace-v3.php ├── cdn.php ├── jekyll-https.php ├── php-fpm.php ├── wordpress-https.php └── wordpress.php ├── default_site └── index.html ├── error_pages ├── 404.html └── 50x.html ├── ingredients ├── README.md ├── error │ ├── 404.conf │ └── 50x.conf ├── general │ ├── cache-assets.conf │ ├── deny-htaccess.conf │ ├── empty.conf │ ├── favicon.conf │ ├── hide-headers.conf │ ├── no-logs.conf │ ├── php-fpm.conf │ ├── robots.conf │ ├── security.conf │ └── ssl.conf ├── software │ ├── bigace-v2.conf │ ├── bigace-v3.conf │ ├── dokuwiki.conf │ ├── freshrss.conf │ ├── jekyll.conf │ ├── kimai.conf │ ├── piwik-tracking.conf │ ├── smf-v1.conf │ ├── smf-v2-prettyurls.conf │ ├── symfony4.conf │ └── yourls.conf └── wordpress │ ├── administration.conf │ ├── common.conf │ ├── hide-login.conf │ ├── php-fpm.conf │ └── redirect-ssl.conf ├── nginx └── README.md ├── recipes ├── 443-default.conf ├── 443-redirect_server.conf ├── 443-redirect_static.conf ├── 80-default.conf ├── 80-redirect_server.conf ├── 80-redirect_static.conf └── plaintext.conf └── sites.php.dist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/README.md -------------------------------------------------------------------------------- /bakery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/bakery.php -------------------------------------------------------------------------------- /certificates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/certificates/README.md -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/config.php -------------------------------------------------------------------------------- /cookbooks/bigace-v2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/cookbooks/bigace-v2.php -------------------------------------------------------------------------------- /cookbooks/bigace-v3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/cookbooks/bigace-v3.php -------------------------------------------------------------------------------- /cookbooks/cdn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/cookbooks/cdn.php -------------------------------------------------------------------------------- /cookbooks/jekyll-https.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/cookbooks/jekyll-https.php -------------------------------------------------------------------------------- /cookbooks/php-fpm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/cookbooks/php-fpm.php -------------------------------------------------------------------------------- /cookbooks/wordpress-https.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/cookbooks/wordpress-https.php -------------------------------------------------------------------------------- /cookbooks/wordpress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/cookbooks/wordpress.php -------------------------------------------------------------------------------- /default_site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/default_site/index.html -------------------------------------------------------------------------------- /error_pages/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/error_pages/404.html -------------------------------------------------------------------------------- /error_pages/50x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/error_pages/50x.html -------------------------------------------------------------------------------- /ingredients/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/ingredients/README.md -------------------------------------------------------------------------------- /ingredients/error/404.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/ingredients/error/404.conf -------------------------------------------------------------------------------- /ingredients/error/50x.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/ingredients/error/50x.conf -------------------------------------------------------------------------------- /ingredients/general/cache-assets.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/ingredients/general/cache-assets.conf -------------------------------------------------------------------------------- /ingredients/general/deny-htaccess.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/ingredients/general/deny-htaccess.conf -------------------------------------------------------------------------------- /ingredients/general/empty.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ingredients/general/favicon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/ingredients/general/favicon.conf -------------------------------------------------------------------------------- /ingredients/general/hide-headers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/ingredients/general/hide-headers.conf -------------------------------------------------------------------------------- /ingredients/general/no-logs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/ingredients/general/no-logs.conf -------------------------------------------------------------------------------- /ingredients/general/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/ingredients/general/php-fpm.conf -------------------------------------------------------------------------------- /ingredients/general/robots.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/ingredients/general/robots.conf -------------------------------------------------------------------------------- /ingredients/general/security.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/ingredients/general/security.conf -------------------------------------------------------------------------------- /ingredients/general/ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/ingredients/general/ssl.conf -------------------------------------------------------------------------------- /ingredients/software/bigace-v2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/ingredients/software/bigace-v2.conf -------------------------------------------------------------------------------- /ingredients/software/bigace-v3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/ingredients/software/bigace-v3.conf -------------------------------------------------------------------------------- /ingredients/software/dokuwiki.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/ingredients/software/dokuwiki.conf -------------------------------------------------------------------------------- /ingredients/software/freshrss.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/ingredients/software/freshrss.conf -------------------------------------------------------------------------------- /ingredients/software/jekyll.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/ingredients/software/jekyll.conf -------------------------------------------------------------------------------- /ingredients/software/kimai.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/ingredients/software/kimai.conf -------------------------------------------------------------------------------- /ingredients/software/piwik-tracking.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/ingredients/software/piwik-tracking.conf -------------------------------------------------------------------------------- /ingredients/software/smf-v1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/ingredients/software/smf-v1.conf -------------------------------------------------------------------------------- /ingredients/software/smf-v2-prettyurls.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/ingredients/software/smf-v2-prettyurls.conf -------------------------------------------------------------------------------- /ingredients/software/symfony4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/ingredients/software/symfony4.conf -------------------------------------------------------------------------------- /ingredients/software/yourls.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/ingredients/software/yourls.conf -------------------------------------------------------------------------------- /ingredients/wordpress/administration.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/ingredients/wordpress/administration.conf -------------------------------------------------------------------------------- /ingredients/wordpress/common.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/ingredients/wordpress/common.conf -------------------------------------------------------------------------------- /ingredients/wordpress/hide-login.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/ingredients/wordpress/hide-login.conf -------------------------------------------------------------------------------- /ingredients/wordpress/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/ingredients/wordpress/php-fpm.conf -------------------------------------------------------------------------------- /ingredients/wordpress/redirect-ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/ingredients/wordpress/redirect-ssl.conf -------------------------------------------------------------------------------- /nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/nginx/README.md -------------------------------------------------------------------------------- /recipes/443-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/recipes/443-default.conf -------------------------------------------------------------------------------- /recipes/443-redirect_server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/recipes/443-redirect_server.conf -------------------------------------------------------------------------------- /recipes/443-redirect_static.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/recipes/443-redirect_static.conf -------------------------------------------------------------------------------- /recipes/80-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/recipes/80-default.conf -------------------------------------------------------------------------------- /recipes/80-redirect_server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/recipes/80-redirect_server.conf -------------------------------------------------------------------------------- /recipes/80-redirect_static.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/recipes/80-redirect_static.conf -------------------------------------------------------------------------------- /recipes/plaintext.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sites.php.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpapst/nginx-bakery/HEAD/sites.php.dist --------------------------------------------------------------------------------