Generate Nginx server blocks or Apache .htaccess rules - redirects, CORS, security headers, caching, PHP apps.
/etc/nginx/sites-available/yourdomain.com then symlink it: ln -s /etc/nginx/sites-available/yourdomain.com /etc/nginx/sites-enabled/. Run nginx -t to test and systemctl reload nginx to apply. For Apache, the .htaccess file goes in your document root. Make sure AllowOverride All is set in your Apache virtual host and mod_rewrite is enabled (a2enmod rewrite).apt install certbot python3-certbot-nginx, then run certbot --nginx -d yourdomain.com. Certbot will modify your Nginx config automatically and set up a cron job to auto-renew. For Apache use certbot --apache. Certificates are valid for 90 days and renewed automatically before expiry.We add new tools every week based on what you ask for. Suggest one - it takes 30 seconds.
We use cookies to enhance your experience. By continuing you agree to our Cookie Policy.