Open ssl.conf
in a text editor.
Edit the domain(s) listed under the [alt_names]
section so that they match the local domain name you want to use for your project, e.g.
DNS.1 = my-project.dev
Additional FQDNs can be added if required:
#!/bin/sh | |
tmux has-session -t figure | |
if [ $? != 0 ] | |
then | |
tmux new-session -s figure -n editor -d | |
tmux send-keys -t figure 'cd ~/Documents/go-workspace/src/figure/' C-m | |
tmux send-keys -t figure 'vim' C-m | |
tmux split-window -h -p 40 -t figure | |
tmux send-keys -t figure:0.1 'cd ~/Documents/go-workspace/src/figure/' C-m |