Created
June 30, 2017 12:10
-
-
Save kevthanewversi/af69ae79b30ee81bfc8a75c479e41f6c to your computer and use it in GitHub Desktop.
nginx conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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