7 lines
138 B
Bash
7 lines
138 B
Bash
|
|
#! /bin/sh
|
||
|
|
|
||
|
|
|
||
|
|
echo "Enter fqdn:"
|
||
|
|
read host_name
|
||
|
|
|
||
|
|
sed "s#{{root_dir}}#$1#g;s#{{host_name}}#$2#g" nginx/template.conf > nginx/flip_cohen.conf
|