17 lines
436 B
Markdown
17 lines
436 B
Markdown
# vhost-stack
|
|
|
|
## Install
|
|
```
|
|
cd /usr/local/src/
|
|
git clone https://git.stack-source.com/msb/vhost-stack.git
|
|
cd vhost-stack
|
|
bash install.sh
|
|
```
|
|
|
|
|
|
### configure a minimal smtp server so automated emails (cron etc) can be sent
|
|
apt -y install exim4-daemon-light mailutils
|
|
sed -i "s|dc_eximconfig_configtype='local'|dc_eximconfig_configtype='internet'|g" /etc/exim4/update-exim4.conf.conf
|
|
/usr/sbin/update-exim4.conf
|
|
systemctl restart exim4
|