gitextract_b_tfkvj5/ ├── .github/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ └── FUNDING.yml ├── LICENSE.md ├── README.md ├── doc/ │ ├── EXAMPLES.md │ ├── HELPERS.md │ ├── HTTP_BASICS.md │ ├── NGINX_BASICS.md │ ├── RULES.md │ └── SSL_TLS_BASICS.md ├── lib/ │ ├── nginx/ │ │ ├── dhparam_4096-with-ds.pem │ │ ├── dhparam_4096.pem │ │ ├── html/ │ │ │ ├── 50x.html │ │ │ └── index.html │ │ ├── master/ │ │ │ ├── _acls/ │ │ │ │ ├── external.geo.acl │ │ │ │ ├── external.map.acl │ │ │ │ ├── internal.geo.acl │ │ │ │ └── internal.map.acl │ │ │ ├── _basic/ │ │ │ │ ├── logging.conf │ │ │ │ ├── main.conf │ │ │ │ ├── proxy-params.conf │ │ │ │ ├── rate-limiting.conf │ │ │ │ └── redirects-map.conf │ │ │ ├── _listen/ │ │ │ │ ├── 192.168.250.2/ │ │ │ │ │ ├── http.conf │ │ │ │ │ └── https.conf │ │ │ │ └── localhost/ │ │ │ │ ├── http.conf │ │ │ │ └── https.conf │ │ │ ├── _server/ │ │ │ │ ├── _helpers/ │ │ │ │ │ └── global.conf │ │ │ │ ├── blkcipher.info/ │ │ │ │ │ ├── acls/ │ │ │ │ │ │ └── demo.conf │ │ │ │ │ ├── backends.conf │ │ │ │ │ ├── certs/ │ │ │ │ │ │ ├── blkcipher.info.conf │ │ │ │ │ │ ├── blkcipher.info.key │ │ │ │ │ │ └── nginx_blkcipher.info_bundle.crt │ │ │ │ │ ├── credentials/ │ │ │ │ │ │ └── demo.txt │ │ │ │ │ └── servers.conf │ │ │ │ ├── defaults/ │ │ │ │ │ ├── backends.conf │ │ │ │ │ ├── certs/ │ │ │ │ │ │ ├── defaults.conf │ │ │ │ │ │ ├── defaults.key │ │ │ │ │ │ └── nginx_defaults_bundle.crt │ │ │ │ │ └── servers.conf │ │ │ │ └── localhost/ │ │ │ │ ├── backends.conf │ │ │ │ ├── certs/ │ │ │ │ │ ├── localhost.conf │ │ │ │ │ ├── localhost.key │ │ │ │ │ └── nginx_localhost_bundle.crt │ │ │ │ └── servers.conf │ │ │ └── _static/ │ │ │ └── errors.conf │ │ ├── mime.types │ │ ├── modules.conf │ │ ├── nginx.conf │ │ ├── snippets/ │ │ │ ├── gdb/ │ │ │ │ └── nginx-config.gdb │ │ │ ├── http-error-pages/ │ │ │ │ ├── README.md │ │ │ │ ├── httpgen │ │ │ │ ├── sites/ │ │ │ │ │ └── .gitkeep │ │ │ │ ├── src/ │ │ │ │ │ ├── 4xx.json │ │ │ │ │ ├── 5xx.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── main.css │ │ │ │ │ └── other.json │ │ │ │ └── templates/ │ │ │ │ ├── _template.html │ │ │ │ └── nginx/ │ │ │ │ └── errors.conf │ │ │ ├── logrotate.d/ │ │ │ │ ├── nginx.bsd │ │ │ │ └── nginx.linux │ │ │ ├── scripts/ │ │ │ │ ├── git-status.sh │ │ │ │ └── show-memory.sh │ │ │ ├── server-name-parser/ │ │ │ │ ├── check-server-name.sh │ │ │ │ └── server-name-parser.py │ │ │ ├── skel/ │ │ │ │ ├── .bashrc-bsd │ │ │ │ ├── .bashrc-linux │ │ │ │ ├── .cshrc-bsd │ │ │ │ ├── .exrc │ │ │ │ ├── .goprofile │ │ │ │ ├── .profile-bsd │ │ │ │ ├── .vimrc │ │ │ │ ├── global-aliases.bash │ │ │ │ └── global-aliases.csh │ │ │ └── systemd/ │ │ │ └── nginx.service │ │ └── win-utf │ ├── ngx_installer.conf │ ├── ngx_installer.sh │ └── ngx_installer.vars └── static/ └── img/ └── cheatsheets/ ├── nginx-hardening-cheatsheet-tls12-100p.xcf └── nginx-hardening-cheatsheet-tls13.xcf