mirror of
https://github.com/friendica/friendica
synced 2024-11-09 17:02:54 +00:00
34 lines
1.1 KiB
Bash
Executable file
34 lines
1.1 KiB
Bash
Executable file
#!/bin/bash
|
|
#
|
|
source $workspaceFolder/.devcontainer/.env
|
|
|
|
echo ">>> Apache2 Configuration"
|
|
envsubst < $workspaceFolder/.devcontainer/include/001-friendica.conf > /tmp/001-friendica.conf
|
|
|
|
# Create a self-signed SSL certificate
|
|
sudo openssl req -x509 -nodes -days 365 -newkey rsa:2048 \
|
|
-keyout /etc/ssl/private/friendica.key \
|
|
-out /etc/ssl/certs/friendica.crt \
|
|
-subj "/C=US/ST=State/L=City/O=Organization/CN=$ServerAlias" \
|
|
-addext "subjectAltName = DNS:$ServerAlias, DNS:$ServerName"
|
|
|
|
sudo chmod +rx /etc/ssl/private
|
|
sudo chmod 644 /etc/ssl/private/friendica.key
|
|
sudo chmod 644 /etc/ssl/certs/friendica.crt
|
|
|
|
sudo cp /tmp/001-friendica.conf /etc/apache2/sites-available/001-friendica.conf
|
|
sudo a2enmod rewrite actions ssl remoteip
|
|
{
|
|
echo RemoteIPHeader X-Real-IP ;
|
|
echo RemoteIPTrustedProxy 10.0.0.0/8 ;
|
|
echo RemoteIPTrustedProxy 172.16.0.0/12 ;
|
|
echo RemoteIPTrustedProxy 192.168.0.0/16 ;
|
|
} | sudo tee /etc/apache2/conf-available/remoteip.conf > /dev/null
|
|
sudo a2enconf remoteip
|
|
|
|
sudo a2ensite 001-friendica
|
|
sudo a2dissite 000-default
|
|
|
|
echo 'ServerName 127.0.0.1' | sudo tee -a /etc/apache2/apache2.conf
|
|
|
|
exit 0
|