10 lines
232 B
Bash
10 lines
232 B
Bash
#!/bin/sh
|
|
|
|
source VM_CONFIG.sh
|
|
if_dentro="enp0s8"
|
|
ip_dentro="10.60.0.2"
|
|
sudo yum install -y openssl apache
|
|
ifconfig $if_dentro $ip_dentro netmask 255.255.255.0
|
|
cp conf/httpd.conf /etc/httpd/conf/
|
|
cp conf/ssl.conf /etc/httpd/conf.d/
|