Reverse Proxy configuration using NGINX
Introduction
Installing NGINX and Certbot
apt install nginx certbot
systemctl enable nginx.service
systemctl start nginx.serviceunlink /etc/nginx/sites-enabled/defaultObtaining SSL Certificates
certbot certonly \
--non-interactive \
--agree-tos \
--standalone \
--email [email protected] \
-d my-server.defguard.net \
-d enroll.defguard.netDefguard Core NGINX configuration
Defguard Proxy (Enrollment Service) NGINX configuration
Security Recommendations
Summary
Was this helpful?