mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-07 20:44:32 +02:00
13 lines
371 B
Bash
Executable file
13 lines
371 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
source $workspaceFolder/.devcontainer/devcontainer.env
|
|
|
|
echo ">>> Apache2 Configuration"
|
|
envsubst < $workspaceFolder/.devcontainer/include/001-friendica.conf > /tmp/001-friendica.conf
|
|
|
|
sudo cp /tmp/001-friendica.conf /etc/apache2/sites-available/001-friendica.conf
|
|
sudo a2enmod rewrite actions
|
|
sudo a2ensite 001-friendica
|
|
sudo a2dissite 000-default
|
|
|
|
exit 0
|