diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/provision | 24 | ||||
-rwxr-xr-x | scripts/provision-host | 43 |
2 files changed, 44 insertions, 23 deletions
diff --git a/scripts/provision b/scripts/provision index b4fe532..d966c9d 100755 --- a/scripts/provision +++ b/scripts/provision @@ -7,7 +7,7 @@ DIRNAME="`dirname $0`" # Basic dependencies -DEPENDENCIES="mkdocs apache2 python3-pip pandoc pandoc-citeproc" +DEPENDENCIES="mkdocs python3-pip pandoc" # PyPI dependencies DEPENDENCIES_PIP="mkdocs-bibtex mkdocs-material mkdocs-awesome-pages-plugin mkdocs-static-i18n mkdocs-macros-plugin" @@ -25,25 +25,3 @@ $SUDO apt install -y $DEPENDENCIES # Install python dependencies pip3 install $DEPENDENCIES_PIP - -# Configure virtual host for the local service -cat <<-EOF | $SUDO tee /etc/apache2/sites-available/local.conf > /dev/null -<VirtualHost *:80> - ServerName estudo.local - DocumentRoot "/srv/shared/site" - - <Directory /srv/shared/site> - Options Indexes FollowSymLinks - AllowOverride All - Require all granted - </Directory> -</VirtualHost> -EOF - -# Enable virtual host -$SUDO a2ensite local -$SUDO systemctl reload apache2 - -# Configure PATH -mkdir -p ~/.custom -echo 'export PATH=$PATH:/srv/shared/scripts' > ~/.custom/profile diff --git a/scripts/provision-host b/scripts/provision-host new file mode 100755 index 0000000..2d0fab5 --- /dev/null +++ b/scripts/provision-host @@ -0,0 +1,43 @@ +#!/bin/bash +# +# Provisioner for the hosting environment +# + +# Parameters +DIRNAME="`dirname $0`" + +# Basic dependencies +DEPENDENCIES="apache2" + +# Check for sudo +if [ "`whoami`" != "root" ]; then + SUDO="sudo" +fi + +# Ensure an up-to-date system +$SUDO apt-get update && $SUDO apt-get dist-upgrade -y && $SUDO apt-get autoremove -y && $SUDO apt-get clean + +# Install dependencies +$SUDO apt install -y $DEPENDENCIES + +# Configure virtual host for the local service +cat <<-EOF | $SUDO tee /etc/apache2/sites-available/local.conf > /dev/null +<VirtualHost *:80> + ServerName estudo.local + DocumentRoot "/srv/shared/site" + + <Directory /srv/shared/site> + Options Indexes FollowSymLinks + AllowOverride All + Require all granted + </Directory> +</VirtualHost> +EOF + +# Enable virtual host +$SUDO a2ensite local +$SUDO systemctl reload apache2 + +# Configure PATH +#mkdir -p ~/.custom +#echo 'export PATH=$PATH:/srv/shared/scripts' > ~/.custom/profile |