Archiving this project since I mainly switched to Caddy for easier maintenance.
Compile and install Nginx from source with optional modules. A fork from angristan's nginx-autoinstall
- x86, x64, arm*
- Debian 8 and later
- Ubuntu 16.04 and later
- Latest mainline or stable version, from source
- Optional modules (see below)
- Removed useless modules
- Custom nginx.conf (default does not work)
- Init script for systemd (not provided by default)
- Logrotate conf (not provided by default)
- Block Nginx installation from APT using pinning, to prevent conflicts
- LibreSSL from source (CHACHA20, ALPN for HTTP/2, X25519, P-521)
- OpenSSL from source (TLS 1.3, CHACHA20, ALPN for HTTP/2, X25519, P-521)
- ngx_http_geoip2_module with libmaxminddb and GeoLite2 databases
- ngx_cache_purge (Purge content from FastCGI, proxy, SCGI and uWSGI caches)
- ngx-fancyindex (Fancy indexes module)
- nginx-dav-ext-module (nginx WebDAV PROPFIND,OPTIONS,LOCK,UNLOCK support)
- nginx-rtmp-module (nginx support for streaming protocols (HLS, DASH))
- nginx-module-vts (Nginx virtual host traffic status module )
- See install instructions: nginx-module-vts
- ModSecurity 3.0 (nginx WAF, block malicious traffic)
- This installs the ModSecurity code and the dynamic nginx module. There is an option in the script to install OWASP rules.
Just download and execute the script :
wget https://raw.githubusercontent.com/theforcer/nginx-autoinstall/master/nginx-autoinstall.sh
chmod +x nginx-autoinstall.sh
./nginx-autoinstall.sh
You can check configuration examples for the custom modules.
Just select the option when running the script :
You have the choice to delete the logs and the conf.
To update Nginx, run the script and install Nginx again. It will overwrite current Nginx files and/or modules.
The update feature downloads the script from this repository, and overwrites the current nginx-autoinstall.sh
file in the working directory. This allows you to get the latest features, bug fixes, and module versions automatically.
You can run the script without the prompts with the option HEADLESS
set to y
.
HEADLESS=y ./nginx-autoinstall.sh
To install Nginx mainline:
HEADLESS=y \
NGINX_VER=2 \
./nginx-autoinstall.sh
To uninstall Nginx and remove the logs and configuration files:
HEADLESS=y \
OPTION=2 \
RM_CONF=y \
RM_LOGS=y \
./nginx-autoinstall.sh
All the default variables are set at the beginning of the script.
A log file is created when running the script. It is located at /tmp/nginx-autoinstall.log
.
GPL v3.0