├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── forge-templates ├── NginxFastCGICacheTemplate.conf └── NginxTemplate.conf ├── nginx-partials ├── cache-busting.conf ├── compression.conf ├── expires.conf └── security.conf └── sites-available ├── basic_localdev.com.conf └── somedomain.com.conf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/nginx-craft/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/nginx-craft/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/nginx-craft/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/nginx-craft/HEAD/README.md -------------------------------------------------------------------------------- /forge-templates/NginxFastCGICacheTemplate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/nginx-craft/HEAD/forge-templates/NginxFastCGICacheTemplate.conf -------------------------------------------------------------------------------- /forge-templates/NginxTemplate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/nginx-craft/HEAD/forge-templates/NginxTemplate.conf -------------------------------------------------------------------------------- /nginx-partials/cache-busting.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/nginx-craft/HEAD/nginx-partials/cache-busting.conf -------------------------------------------------------------------------------- /nginx-partials/compression.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/nginx-craft/HEAD/nginx-partials/compression.conf -------------------------------------------------------------------------------- /nginx-partials/expires.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/nginx-craft/HEAD/nginx-partials/expires.conf -------------------------------------------------------------------------------- /nginx-partials/security.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/nginx-craft/HEAD/nginx-partials/security.conf -------------------------------------------------------------------------------- /sites-available/basic_localdev.com.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/nginx-craft/HEAD/sites-available/basic_localdev.com.conf -------------------------------------------------------------------------------- /sites-available/somedomain.com.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/nginx-craft/HEAD/sites-available/somedomain.com.conf --------------------------------------------------------------------------------