Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
nginx conf
server {
listen 443;
server_name goto.kla.xxx.com go; # <== 2 domains
root /var/www/html/docs/sslbeispieldata;
ssl on;
ssl_certificate /var/www/ssl/xx.crt;
ssl_certificate_key /var/www/ssl/xx.key;
return 301 goto.xxxxxxxx.com;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment