├── .gitignore ├── LICENSE ├── README.md ├── common.zip ├── docs ├── README.md └── _config.yml ├── etc ├── cron.weekly │ └── wo-maintenance ├── fail2ban │ ├── filter.d │ │ ├── ddos.conf │ │ ├── ee-wordpress.conf │ │ └── nginx-forbidden.conf │ └── jail.d │ │ ├── custom.conf │ │ └── ddos.conf ├── mysql │ └── my.cnf ├── nginx │ ├── common │ │ ├── acl.conf │ │ ├── hsts-nosub.conf │ │ ├── hsts.conf │ │ ├── locations-php7.conf │ │ ├── locations-php72.conf │ │ ├── ocsp.conf │ │ ├── pagespeed.conf │ │ ├── php72.conf │ │ ├── wpcommon-php7.conf │ │ ├── wpcommon-php72.conf │ │ └── wpcommon-php73.conf │ ├── conf.d │ │ ├── cloudflare.conf │ │ ├── fastcgi.conf │ │ ├── stub_status.conf │ │ └── tweaks.conf │ ├── mime.types │ ├── nginx-tlsv12.conf │ ├── nginx.conf │ ├── proxy_params │ └── sites-available │ │ ├── 22222 │ │ └── default ├── ntp.conf ├── php │ ├── 7.0 │ │ ├── cli │ │ │ └── php.ini │ │ └── fpm │ │ │ ├── php.ini │ │ │ └── pool.d │ │ │ ├── www-sock.conf │ │ │ └── www-two-sock.conf │ ├── 7.1 │ │ └── fpm │ │ │ ├── php.ini │ │ │ └── pool.d │ │ │ ├── www-sock.conf │ │ │ └── www-two-sock.conf │ ├── 7.2 │ │ ├── cli │ │ │ └── php.ini │ │ └── fpm │ │ │ ├── php.ini │ │ │ └── pool.d │ │ │ ├── www-sock.conf │ │ │ └── www-two-sock.conf │ └── 7.3 │ │ ├── cli │ │ └── php.ini │ │ └── fpm │ │ ├── php.ini │ │ └── pool.d │ │ ├── www-sock.conf │ │ └── www-two-sock.conf ├── security │ └── limits.conf ├── ssh │ └── sshd_config ├── sysctl.d │ └── 60-ubuntu-nginx-web-server.conf └── systemd │ ├── resolved.conf │ └── system │ ├── mariadb.service.d │ └── limits.conf │ ├── netdata.service.d │ └── limits.conf │ ├── nginx.service │ └── nginx.service.d │ └── limits.conf └── var └── www ├── .bashrc └── .profile /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | \.vscode/ 3 | 4 | \.history/ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/README.md -------------------------------------------------------------------------------- /common.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/common.zip -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /etc/cron.weekly/wo-maintenance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/cron.weekly/wo-maintenance -------------------------------------------------------------------------------- /etc/fail2ban/filter.d/ddos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/fail2ban/filter.d/ddos.conf -------------------------------------------------------------------------------- /etc/fail2ban/filter.d/ee-wordpress.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/fail2ban/filter.d/ee-wordpress.conf -------------------------------------------------------------------------------- /etc/fail2ban/filter.d/nginx-forbidden.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/fail2ban/filter.d/nginx-forbidden.conf -------------------------------------------------------------------------------- /etc/fail2ban/jail.d/custom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/fail2ban/jail.d/custom.conf -------------------------------------------------------------------------------- /etc/fail2ban/jail.d/ddos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/fail2ban/jail.d/ddos.conf -------------------------------------------------------------------------------- /etc/mysql/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/mysql/my.cnf -------------------------------------------------------------------------------- /etc/nginx/common/acl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/nginx/common/acl.conf -------------------------------------------------------------------------------- /etc/nginx/common/hsts-nosub.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/nginx/common/hsts-nosub.conf -------------------------------------------------------------------------------- /etc/nginx/common/hsts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/nginx/common/hsts.conf -------------------------------------------------------------------------------- /etc/nginx/common/locations-php7.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/nginx/common/locations-php7.conf -------------------------------------------------------------------------------- /etc/nginx/common/locations-php72.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/nginx/common/locations-php72.conf -------------------------------------------------------------------------------- /etc/nginx/common/ocsp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/nginx/common/ocsp.conf -------------------------------------------------------------------------------- /etc/nginx/common/pagespeed.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/nginx/common/pagespeed.conf -------------------------------------------------------------------------------- /etc/nginx/common/php72.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/nginx/common/php72.conf -------------------------------------------------------------------------------- /etc/nginx/common/wpcommon-php7.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/nginx/common/wpcommon-php7.conf -------------------------------------------------------------------------------- /etc/nginx/common/wpcommon-php72.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/nginx/common/wpcommon-php72.conf -------------------------------------------------------------------------------- /etc/nginx/common/wpcommon-php73.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/nginx/common/wpcommon-php73.conf -------------------------------------------------------------------------------- /etc/nginx/conf.d/cloudflare.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/nginx/conf.d/cloudflare.conf -------------------------------------------------------------------------------- /etc/nginx/conf.d/fastcgi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/nginx/conf.d/fastcgi.conf -------------------------------------------------------------------------------- /etc/nginx/conf.d/stub_status.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/nginx/conf.d/stub_status.conf -------------------------------------------------------------------------------- /etc/nginx/conf.d/tweaks.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/nginx/conf.d/tweaks.conf -------------------------------------------------------------------------------- /etc/nginx/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/nginx/mime.types -------------------------------------------------------------------------------- /etc/nginx/nginx-tlsv12.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/nginx/nginx-tlsv12.conf -------------------------------------------------------------------------------- /etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /etc/nginx/proxy_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/nginx/proxy_params -------------------------------------------------------------------------------- /etc/nginx/sites-available/22222: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/nginx/sites-available/22222 -------------------------------------------------------------------------------- /etc/nginx/sites-available/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/nginx/sites-available/default -------------------------------------------------------------------------------- /etc/ntp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/ntp.conf -------------------------------------------------------------------------------- /etc/php/7.0/cli/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/php/7.0/cli/php.ini -------------------------------------------------------------------------------- /etc/php/7.0/fpm/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/php/7.0/fpm/php.ini -------------------------------------------------------------------------------- /etc/php/7.0/fpm/pool.d/www-sock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/php/7.0/fpm/pool.d/www-sock.conf -------------------------------------------------------------------------------- /etc/php/7.0/fpm/pool.d/www-two-sock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/php/7.0/fpm/pool.d/www-two-sock.conf -------------------------------------------------------------------------------- /etc/php/7.1/fpm/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/php/7.1/fpm/php.ini -------------------------------------------------------------------------------- /etc/php/7.1/fpm/pool.d/www-sock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/php/7.1/fpm/pool.d/www-sock.conf -------------------------------------------------------------------------------- /etc/php/7.1/fpm/pool.d/www-two-sock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/php/7.1/fpm/pool.d/www-two-sock.conf -------------------------------------------------------------------------------- /etc/php/7.2/cli/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/php/7.2/cli/php.ini -------------------------------------------------------------------------------- /etc/php/7.2/fpm/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/php/7.2/fpm/php.ini -------------------------------------------------------------------------------- /etc/php/7.2/fpm/pool.d/www-sock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/php/7.2/fpm/pool.d/www-sock.conf -------------------------------------------------------------------------------- /etc/php/7.2/fpm/pool.d/www-two-sock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/php/7.2/fpm/pool.d/www-two-sock.conf -------------------------------------------------------------------------------- /etc/php/7.3/cli/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/php/7.3/cli/php.ini -------------------------------------------------------------------------------- /etc/php/7.3/fpm/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/php/7.3/fpm/php.ini -------------------------------------------------------------------------------- /etc/php/7.3/fpm/pool.d/www-sock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/php/7.3/fpm/pool.d/www-sock.conf -------------------------------------------------------------------------------- /etc/php/7.3/fpm/pool.d/www-two-sock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/php/7.3/fpm/pool.d/www-two-sock.conf -------------------------------------------------------------------------------- /etc/security/limits.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/security/limits.conf -------------------------------------------------------------------------------- /etc/ssh/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/ssh/sshd_config -------------------------------------------------------------------------------- /etc/sysctl.d/60-ubuntu-nginx-web-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/sysctl.d/60-ubuntu-nginx-web-server.conf -------------------------------------------------------------------------------- /etc/systemd/resolved.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/systemd/resolved.conf -------------------------------------------------------------------------------- /etc/systemd/system/mariadb.service.d/limits.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/systemd/system/mariadb.service.d/limits.conf -------------------------------------------------------------------------------- /etc/systemd/system/netdata.service.d/limits.conf: -------------------------------------------------------------------------------- 1 | [Service] 2 | LimitNOFILE=30000 3 | -------------------------------------------------------------------------------- /etc/systemd/system/nginx.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/etc/systemd/system/nginx.service -------------------------------------------------------------------------------- /etc/systemd/system/nginx.service.d/limits.conf: -------------------------------------------------------------------------------- 1 | [Service] 2 | LimitNOFILE=30000 3 | -------------------------------------------------------------------------------- /var/www/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/var/www/.bashrc -------------------------------------------------------------------------------- /var/www/.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtuBox/ubuntu-nginx-web-server/HEAD/var/www/.profile --------------------------------------------------------------------------------