Add a SSL Certificate
PreviousAdvanced Network ConfigurationNextEnable SSL Certificate Container accessible on S3 Protocol
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
$ cd ~/v1-x-y/files/
$ openssl11 req -x509 -newkey rsa:4096 -sha256 -days 365 -nodes -keyout
./nodeum_certs/private.key -out ./nodeum_certs/public.crt -subj "/
CN=nodeum.mydomain.com" -addext "subjectAltName=DNS:nodeum.mydomain.com,DNS:localhost,
IP:127.0.0.1,IP:10.1.2.3"$ cd ~/v1-x-y/files/nodeum_certs
$ ls -l
total 8
-rw------- 1 root root 3272 Mar 29 13:17 private.key
-rw-rw-r-- 1 root root 1927 Mar 29 13:17 public.crt$ cd ~/v1-x-y/inventory/host_vars/
$ vi srv01
...
# If there is no default network interface defined or you want to override it
# iface_name: eth0
rails_ssl_enabled: yes
...