├── .gitignore ├── AUTHORS.md ├── LICENSE.md ├── README.md ├── example ├── log-based-static-contact-form-emailer.sh ├── logs │ ├── example_access.log │ ├── example_cron.log │ ├── example_error.log │ ├── static-contact-access.log │ └── static-contact-error.log ├── nginx.conf └── web │ └── www │ └── public │ └── index.html └── nginx-example.conf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowbl/log-based-static-contact-form/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowbl/log-based-static-contact-form/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowbl/log-based-static-contact-form/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowbl/log-based-static-contact-form/HEAD/README.md -------------------------------------------------------------------------------- /example/log-based-static-contact-form-emailer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowbl/log-based-static-contact-form/HEAD/example/log-based-static-contact-form-emailer.sh -------------------------------------------------------------------------------- /example/logs/example_access.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/logs/example_cron.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/logs/example_error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/logs/static-contact-access.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/logs/static-contact-error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowbl/log-based-static-contact-form/HEAD/example/nginx.conf -------------------------------------------------------------------------------- /example/web/www/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowbl/log-based-static-contact-form/HEAD/example/web/www/public/index.html -------------------------------------------------------------------------------- /nginx-example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowbl/log-based-static-contact-form/HEAD/nginx-example.conf --------------------------------------------------------------------------------