123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633 |
- #!/bin/bash
- # _____ _ _
- # | __|___ ___ ___ _| |___ _____| |_ ___ ___ ___
- # | __| _| -_| -_| . | . | | . | . | | -_|
- # |__| |_| |___|___|___|___|_|_|_|___|___|_|_|___|
- #
- # Freedom in the Cloud
- #
- # Friendica application
- #
- # License
- # =======
- #
- # Copyright (C) 2018 Bob Mottram <bob@freedombone.net>
- #
- # This program is free software: you can redistribute it and/or modify
- # it under the terms of the GNU Affero General Public License as published by
- # the Free Software Foundation, either version 3 of the License, or
- # (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU Affero General Public License for more details.
- #
- # You should have received a copy of the GNU Affero General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
-
- VARIANTS='full full-vim social'
-
- IN_DEFAULT_INSTALL=0
- SHOW_ON_ABOUT=1
-
- FRIENDICA_DOMAIN_NAME=
- FRIENDICA_CODE=
- FRIENDICA_ONION_PORT=8114
- FRIENDICA_REPO="https://github.com/friendica/friendica"
- FRIENDICA_ADDONS_REPO="https://github.com/friendica/friendica-addons"
- FRIENDICA_ADMIN_PASSWORD=
- FRIENDICA_COMMIT='b5a42c5b31fae5315bacd37769eba20ab2345aaa'
- FRIENDICA_ADDONS_COMMIT='7cb9dbdda7f227462895c07be3c968405561d40e'
-
- FRIENDICA_SHORT_DESCRIPTION=$'Friendica'
- FRIENDICA_DESCRIPTION=$'Friendica federated social network'
- FRIENDICA_ICON_URL=
- FRIENDICA_MOBILE_APP_URL=
-
- friendica_variables=(ONION_ONLY
- FRIENDICA_DOMAIN_NAME
- FRIENDICA_CODE
- DDNS_PROVIDER
- MY_USERNAME
- FRIENDICA_REPO
- FRIENDICA_ADDONS_REPO)
-
- function logging_on_friendica {
- echo -n ''
- }
-
- function logging_off_friendica {
- echo -n ''
- }
-
- function remove_user_friendica {
- remove_username="$1"
- "${PROJECT_NAME}-pass" -u "$remove_username" --rmapp friendica
- }
-
- function add_user_friendica {
- if [[ $(app_is_installed friendica) == "0" ]]; then
- echo '0'
- return
- fi
-
- new_username="$1"
- new_user_password="$2"
- "${PROJECT_NAME}-pass" -u "$new_username" -a friendica -p "$new_user_password"
- echo '0'
- }
-
- function friendica_renew_cert {
- dialog --title $"Renew SSL certificate" \
- --backtitle $"Freedombone Control Panel" \
- --yesno $"\\nThis will renew a letsencrypt certificate. Select 'yes' to continue" 16 60
- sel=$?
- case $sel in
- 1) return;;
- 255) return;;
- esac
- FRIENDICA_DOMAIN_NAME=$(get_completion_param "friendica domain")
- if [ ! -d "/var/www/$FRIENDICA_DOMAIN_NAME/htdocs" ]; then
- dialog --title $"Renew SSL certificate" \
- --msgbox $"Friendica install directory not found" 6 40
- return
- fi
- if ! "${PROJECT_NAME}-renew-cert" -h "$FRIENDICA_DOMAIN_NAME" -p 'letsencrypt'; then
- any_key
- else
- dialog --title $"Renew SSL certificate" \
- --msgbox $"Friendica certificate has been renewed" 6 40
- fi
- }
-
- function friendica_channel_directory_server {
- if ! grep -q "friendica domain" "$COMPLETION_FILE"; then
- dialog --title $"Friendica channel directory server" \
- --msgbox $"Friendica is not installed on this system" 6 40
- return
- fi
- FRIENDICA_DOMAIN_NAME=$(get_completion_param "friendica domain")
- if [ ! -d "/var/www/$FRIENDICA_DOMAIN_NAME/htdocs" ]; then
- dialog --title $"Friendica channel directory server" \
- --msgbox $"Friendica install directory not found" 6 40
- return
- fi
-
- CURR_DIR_SERVER=$(grep directory "/var/www/$FRIENDICA_DOMAIN_NAME/htdocs/.htconfig.php" | awk -F "'" '{print $6}')
-
- data=$(mktemp 2>/dev/null)
- dialog --title $"Friendica channel directory server" \
- --backtitle $"Freedombone Control Panel" \
- --inputbox $"When you click on 'channel directory' this is where Friendica will obtain its list from" 8 60 "$CURR_DIR_SERVER" 2>"$data"
- sel=$?
- case $sel in
- 0)
- friendica_domain_server=$(<"$data")
- if [[ "$friendica_domain_server" != *"."* ]]; then
- rm -f "$data"
- return
- fi
- if [[ "$friendica_domain_server" != "http"* ]]; then
- dialog --title $"Friendica channel directory server" \
- --msgbox $"Invalid domain - include the https://" 6 40
- rm -f "$data"
- return
- fi
- sed -i "s|\['directory'\] = .*|\['directory'\] = \'$friendica_domain_server\';|g" "/var/www/$FRIENDICA_DOMAIN_NAME/htdocs/.htconfig.php"
- dialog --title $"Friendica channel directory server" \
- --msgbox $"Domain channel directory server changed to $friendica_domain_server" 6 40
- ;;
- esac
- rm -f "$data"
- }
-
- function friendica_close_registrations {
- sed -i "s|REGISTER_OPEN|REGISTER_CLOSED|g" "/var/www/$FRIENDICA_DOMAIN_NAME/htdocs/.htconfig.php"
- dialog --title $"Friendica Account Registrations" \
- --msgbox $"New registrations are now closed" 6 40
- }
-
- function friendica_allow_registrations {
- sed -i "s|REGISTER_CLOSED|REGISTER_OPEN|g" "/var/www/$FRIENDICA_DOMAIN_NAME/htdocs/.htconfig.php"
- dialog --title $"Friendica Account Registrations" \
- --msgbox $"New registrations are permitted" 6 40
- }
-
- function configure_interactive_friendica {
- W=(1 $"Set channel directory server"
- 2 $"Renew SSL certificate"
- 3 $"Close new account registrations"
- 4 $"Allow new account registrations")
-
- while true
- do
- # shellcheck disable=SC2068
- selection=$(dialog --backtitle $"Freedombone Administrator Control Panel" --title $"Friendica" --menu $"Choose an operation, or ESC to exit:" 14 60 4 "${W[@]}" 3>&2 2>&1 1>&3)
-
- if [ ! "$selection" ]; then
- break
- fi
-
- case $selection in
- 1) friendica_channel_directory_server;;
- 2) friendica_renew_cert;;
- 3) friendica_close_registrations;;
- 4) friendica_allow_registrations;;
- esac
- done
- }
-
- function install_interactive_friendica {
- if [[ $ONION_ONLY != "no" ]]; then
- return
- fi
-
- function_check interactive_site_details
- interactive_site_details friendica
-
- APP_INSTALLED=1
- }
-
- function change_password_friendica {
- #FRIENDICA_USERNAME="$1"
- FRIENDICA_PASSWORD="$2"
- if [ ${#FRIENDICA_PASSWORD} -lt 8 ]; then
- echo $'Friendica password is too short'
- return
- fi
- # TODO: This doesn't actually change the password
- #${PROJECT_NAME}-pass -u $FRIENDICA_USERNAME -a friendica -p "$FRIENDICA_PASSWORD"
- }
-
- function friendica_create_database {
- if [ -f "$IMAGE_PASSWORD_FILE" ]; then
- FRIENDICA_ADMIN_PASSWORD="$(printf "%s" "$(cat "$IMAGE_PASSWORD_FILE")")"
- fi
- if [ ! "$FRIENDICA_ADMIN_PASSWORD" ]; then
- FRIENDICA_ADMIN_PASSWORD="$(create_password "${MINIMUM_PASSWORD_LENGTH}")"
- fi
- "${PROJECT_NAME}-pass" -u "$MY_USERNAME" -a friendica -p "$FRIENDICA_ADMIN_PASSWORD"
- if [ ! "$FRIENDICA_ADMIN_PASSWORD" ]; then
- return
- fi
-
- function_check create_database
- create_database friendica "$FRIENDICA_ADMIN_PASSWORD"
- }
-
- function reconfigure_friendica {
- echo -n ''
- }
-
- function upgrade_friendica {
- CURR_FRIENDICA_COMMIT=$(get_completion_param "friendica commit")
- if [[ "$CURR_FRIENDICA_COMMIT" == "$FRIENDICA_COMMIT" ]]; then
- return
- fi
-
- FRIENDICA_PATH=/var/www/$FRIENDICA_DOMAIN_NAME/htdocs
-
- function_check set_repo_commit
- set_repo_commit "$FRIENDICA_PATH" "friendica commit" "$FRIENDICA_COMMIT" $FRIENDICA_REPO
- set_repo_commit "$FRIENDICA_PATH/addon" "friendica addons commit" "$FRIENDICA_ADDONS_COMMIT" $FRIENDICA_ADDONS_REPO
- }
-
- function backup_local_friendica {
- friendica_path="/var/www/${FRIENDICA_DOMAIN_NAME}/htdocs"
- if [ -d "$friendica_path" ]; then
- function_check backup_database_to_usb
- backup_database_to_usb friendica
-
- backup_directory_to_usb "$friendica_path" friendica
- fi
- }
-
- function restore_local_friendica {
- temp_restore_dir=/root/tempfriendica
- friendica_dir=/var/www/${FRIENDICA_DOMAIN_NAME}/htdocs
-
- function_check friendica_create_database
- friendica_create_database
-
- restore_database friendica "${FRIENDICA_DOMAIN_NAME}"
- if [ -d "$USB_MOUNT/backup/friendica" ]; then
- if [ ! -d "$friendica_dir/store/[data]/smarty3" ]; then
- mkdir -p "$friendica_dir/store/[data]/smarty3"
- fi
- chmod 1777 "$friendica_dir/store/[data]/smarty3"
- chown -R www-data:www-data "$friendica_dir/"*
- if [ -d $temp_restore_dir ]; then
- rm -rf $temp_restore_dir
- fi
-
- MARIADB_PASSWORD=$("${PROJECT_NAME}-pass" -u root -a mariadb)
- FRIENDICA_PATH=/var/www/$FRIENDICA_DOMAIN_NAME/htdocs
- sed -i "s|\$db_pass =.*|\$db_pass = '${MARIADB_PASSWORD}';|g" "$FRIENDICA_PATH/.htconfig.php"
- MARIADB_PASSWORD=
- fi
- }
-
- function backup_remote_friendica {
- temp_backup_dir="/var/www/${FRIENDICA_DOMAIN_NAME}/htdocs"
- if [ -d "$temp_backup_dir" ]; then
- suspend_site "${FRIENDICA_DOMAIN_NAME}"
- backup_database_to_friend friendica
- echo "Backing up Friendica installation"
- backup_directory_to_friend "$temp_backup_dir" friendica
- restart_site
- echo "Backup of Friendica complete"
- else
- echo $"Friendica domain specified but not found in /var/www/${FRIENDICA_DOMAIN_NAME}"
- exit 2578
- fi
- }
-
- function restore_remote_friendica {
- function_check restore_database_from_friend
-
- function_check friendica_create_database
- friendica_create_database
-
- restore_database_from_friend friendica "${FRIENDICA_DOMAIN_NAME}"
- if [ -d "$SERVER_DIRECTORY/backup/friendica" ]; then
- if [ ! -d "/var/www/${FRIENDICA_DOMAIN_NAME}/htdocs/store/[data]/smarty3" ]; then
- mkdir -p "/var/www/${FRIENDICA_DOMAIN_NAME}/htdocs/store/[data]/smarty3"
- fi
- chmod 1777 "/var/www/${FRIENDICA_DOMAIN_NAME}/htdocs/store/[data]/smarty3"
- chown -R www-data:www-data "/var/www/${FRIENDICA_DOMAIN_NAME}/htdocs/"*
- fi
- if [ -d /root/tempfriendica ]; then
- rm -rf /root/tempfriendica
- fi
-
- MARIADB_PASSWORD=$("${PROJECT_NAME}-pass" -u root -a mariadb)
- FRIENDICA_PATH="/var/www/$FRIENDICA_DOMAIN_NAME/htdocs"
- sed -i "s|\$db_pass =.*|\$db_pass = '${MARIADB_PASSWORD}';|g" "$FRIENDICA_PATH/.htconfig.php"
- MARIADB_PASSWORD=
- }
-
- function remove_friendica {
- if [ ${#FRIENDICA_DOMAIN_NAME} -eq 0 ]; then
- return
- fi
- nginx_dissite "$FRIENDICA_DOMAIN_NAME"
- remove_certs "${FRIENDICA_DOMAIN_NAME}"
- if [ -d "/var/www/$FRIENDICA_DOMAIN_NAME" ]; then
- rm -rf "/var/www/$FRIENDICA_DOMAIN_NAME"
- fi
- if [ -f "/etc/nginx/sites-available/$FRIENDICA_DOMAIN_NAME" ]; then
- rm "/etc/nginx/sites-available/$FRIENDICA_DOMAIN_NAME"
- fi
- function_check drop_database
- drop_database friendica
- function_check remove_onion_service
- remove_onion_service friendica ${FRIENDICA_ONION_PORT}
- sed -i '/friendica/d' "$COMPLETION_FILE"
- sed -i '/poller.php/d' /etc/crontab
-
- function_check remove_ddns_domain
- remove_ddns_domain "$FRIENDICA_DOMAIN_NAME"
- }
-
- function install_friendica {
- if [ ! "$FRIENDICA_DOMAIN_NAME" ]; then
- return
- fi
-
- if [[ "$ONION_ONLY" != "no" ]]; then
- return
- fi
-
- FRIENDICA_PATH="/var/www/$FRIENDICA_DOMAIN_NAME/htdocs"
-
- function_check install_mariadb
- install_mariadb
-
- function_check get_mariadb_password
- get_mariadb_password
-
- function_check repair_databases_script
- repair_databases_script
-
- apt-get -yq install php-common php-cli php-curl php-gd php-mysql php-mcrypt git
- apt-get -yq install php-dev imagemagick php-imagick libfcgi0ldbl
- apt-get -yq install php-memcached
-
- if [ ! -d "/var/www/$FRIENDICA_DOMAIN_NAME" ]; then
- mkdir "/var/www/$FRIENDICA_DOMAIN_NAME"
- fi
- if [ ! -d "$FRIENDICA_PATH" ]; then
- mkdir "$FRIENDICA_PATH"
- fi
-
- if [ ! -f "$FRIENDICA_PATH/index.php" ]; then
- cd "$INSTALL_DIR" || exit 2346824864
-
- if [ -d /repos/friendica ]; then
- mkdir friendica
- cp -r -p /repos/friendica/. friendica
- cd friendica || exit 24682462
- git pull
- else
- function_check git_clone
- git_clone "$FRIENDICA_REPO" friendica
- fi
-
- git checkout $FRIENDICA_COMMIT -b $FRIENDICA_COMMIT
- set_completion_param "friendica commit" "$FRIENDICA_COMMIT"
-
- rm -rf "$FRIENDICA_PATH"
- # shellcheck disable=SC2086
- mv friendica $FRIENDICA_PATH
-
- git_clone "$FRIENDICA_ADDONS_REPO" "$FRIENDICA_PATH/addon"
- cd "$FRIENDICA_PATH/addon" || exit 34835685
- git checkout "$FRIENDICA_ADDONS_COMMIT" -b "$FRIENDICA_ADDONS_COMMIT"
- set_completion_param "friendica addons commit" "$FRIENDICA_ADDONS_COMMIT"
-
- chown -R www-data:www-data "$FRIENDICA_PATH"
- fi
-
- FRIENDICA_ONION_HOSTNAME=
- if [[ $ONION_ONLY != "no" ]]; then
- FRIENDICA_ONION_HOSTNAME=$(add_onion_service friendica 80 ${FRIENDICA_ONION_PORT})
- fi
-
- friendica_create_database
-
- if ! grep -q "$FRIENDICA_PATH" /etc/crontab; then
- echo "12,22,32,42,52 * * * * root cd $FRIENDICA_PATH; /usr/bin/timeout 500 /usr/bin/php include/poller.php" >> /etc/crontab
- fi
-
- function_check add_ddns_domain
- add_ddns_domain "$FRIENDICA_DOMAIN_NAME"
-
- if [[ "$ONION_ONLY" == "no" ]]; then
- function_check nginx_http_redirect
- nginx_http_redirect "$FRIENDICA_DOMAIN_NAME"
- { echo 'server {';
- echo ' listen 443 ssl;';
- echo ' #listen [::]:443 ssl;';
- echo " root $FRIENDICA_PATH;";
- echo " server_name $FRIENDICA_DOMAIN_NAME;";
- echo " error_log /dev/null;";
- echo ' index index.php;';
- echo ' charset utf-8;';
- echo ' access_log /dev/null;'; } >> "/etc/nginx/sites-available/$FRIENDICA_DOMAIN_NAME"
- function_check nginx_ssl
- nginx_ssl "$FRIENDICA_DOMAIN_NAME"
- function_check nginx_security_options
- nginx_security_options "$FRIENDICA_DOMAIN_NAME"
- { echo ' add_header Strict-Transport-Security max-age=15768000;';
- echo '';
- echo ' # rewrite to front controller as default rule';
- echo ' location / {'; } >> "/etc/nginx/sites-available/$FRIENDICA_DOMAIN_NAME"
- function_check nginx_limits
- nginx_limits "$FRIENDICA_DOMAIN_NAME"
- { echo " rewrite ^/(.*) /index.php?q=\$uri&\$args last;";
- echo ' }';
- echo '';
- echo ' # statically serve these file types when possible';
- echo ' # otherwise fall back to front controller';
- echo ' # allow browser to cache them';
- echo ' # added .htm for advanced source code editor library';
- echo ' location ~* \.(jpg|jpeg|gif|png|ico|css|js|htm|html|ttf|woff|svg)$ {';
- echo ' expires 30d;';
- echo " try_files \$uri /index.php?q=\$uri&\$args;";
- echo ' }';
- echo '';
- echo ' # block these file types';
- echo ' location ~* \.(tpl|md|tgz|log|out)$ {';
- echo ' deny all;';
- echo ' }';
- echo '';
- echo ' # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000';
- echo ' # or a unix socket';
- echo ' location ~* \.php$ {'; } >> "/etc/nginx/sites-available/$FRIENDICA_DOMAIN_NAME"
- function_check nginx_limits
- nginx_limits "$FRIENDICA_DOMAIN_NAME"
- { echo ' # Zero-day exploit defense.';
- echo ' # http://forum.nginx.org/read.php?2,88845,page=3';
- echo " # Won't work properly (404 error) if the file is not stored on this";
- echo " # server, which is entirely possible with php-fpm/php-fcgi.";
- echo " # Comment the 'try_files' line out if you set up php-fpm/php-fcgi on";
- echo " # another machine. And then cross your fingers that you won't get hacked.";
- echo " try_files \$uri \$uri/ /index.php;";
- echo ' # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini';
- echo ' fastcgi_split_path_info ^(.+\.php)(/.+)$;';
- echo ' # With php-cgi alone:';
- echo ' # fastcgi_pass 127.0.0.1:9000;';
- echo ' # With php-fpm:';
- echo ' fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;';
- echo ' include fastcgi_params;';
- echo ' fastcgi_read_timeout 30;';
- echo ' fastcgi_index index.php;';
- echo " fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name;";
- echo ' fastcgi_read_timeout 300;';
- echo ' }';
- echo '';
- echo ' # deny access to all dot files';
- echo ' location ~ /\. {';
- echo ' deny all;';
- echo ' }';
- echo '';
- echo ' location ~ /\.ht {';
- echo ' deny all;';
- echo ' }';
- echo '}';
- echo ''; } >> "/etc/nginx/sites-available/$FRIENDICA_DOMAIN_NAME"
- else
- { echo 'server {';
- echo " listen 127.0.0.1:${FRIENDICA_ONION_PORT} default_server;";
- echo " root $FRIENDICA_PATH;";
- echo " server_name $FRIENDICA_ONION_HOSTNAME;";
- echo " error_log /dev/null;";
- echo ' index index.php;';
- echo ' charset utf-8;';
- echo ' access_log /dev/null;';
- echo ' add_header Strict-Transport-Security max-age=15768000;';
- echo '';
- echo ' # rewrite to front controller as default rule';
- echo ' location / {'; } > "/etc/nginx/sites-available/$FRIENDICA_DOMAIN_NAME"
- nginx_limits "$FRIENDICA_DOMAIN_NAME"
- nginx_security_options "$FRIENDICA_DOMAIN_NAME"
- { echo " rewrite ^/(.*) /index.php?q=\$uri&\$args last;";
- echo ' }';
- echo '';
- echo ' # statically serve these file types when possible';
- echo ' # otherwise fall back to front controller';
- echo ' # allow browser to cache them';
- echo ' # added .htm for advanced source code editor library';
- echo ' location ~* \.(jpg|jpeg|gif|png|ico|css|js|htm|html|ttf|woff|svg)$ {';
- echo ' expires 30d;';
- echo " try_files \$uri /index.php?q=\$uri&\$args;";
- echo ' }';
- echo '';
- echo ' # block these file types';
- echo ' location ~* \.(tpl|md|tgz|log|out)$ {';
- echo ' deny all;';
- echo ' }';
- echo '';
- echo ' # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000';
- echo ' # or a unix socket';
- echo ' location ~* \.php$ {'; } >> "/etc/nginx/sites-available/$FRIENDICA_DOMAIN_NAME"
- nginx_limits "$FRIENDICA_DOMAIN_NAME"
- nginx_security_options "$FRIENDICA_DOMAIN_NAME"
- { echo ' # Zero-day exploit defense.';
- echo ' # http://forum.nginx.org/read.php?2,88845,page=3';
- echo " # Won't work properly (404 error) if the file is not stored on this";
- echo " # server, which is entirely possible with php-fpm/php-fcgi.";
- echo " # Comment the 'try_files' line out if you set up php-fpm/php-fcgi on";
- echo " # another machine. And then cross your fingers that you won't get hacked.";
- echo " try_files \$uri \$uri/ /index.php;";
- echo ' # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini';
- echo ' fastcgi_split_path_info ^(.+\.php)(/.+)$;';
- echo ' # With php-cgi alone:';
- echo ' # fastcgi_pass 127.0.0.1:9000;';
- echo ' # With php-fpm:';
- echo ' fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;';
- echo ' include fastcgi_params;';
- echo ' fastcgi_read_timeout 30;';
- echo ' fastcgi_index index.php;';
- echo " fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name;";
- echo ' fastcgi_read_timeout 300;';
- echo ' }';
- echo '';
- echo ' # deny access to all dot files';
- echo ' location ~ /\. {';
- echo ' deny all;';
- echo ' }';
- echo '';
- echo ' location ~ /\.ht {';
- echo ' deny all;';
- echo ' }';
- echo '}'; } >> "/etc/nginx/sites-available/$FRIENDICA_DOMAIN_NAME"
- fi
-
- function_check configure_php
- configure_php
-
- function_check create_site_certificate
- create_site_certificate "$FRIENDICA_DOMAIN_NAME" 'yes'
-
- if [ ! -d "$FRIENDICA_PATH/view/tpl/smarty3" ]; then
- mkdir "$FRIENDICA_PATH/view/tpl/smarty3"
- fi
- if [ ! -d "$FRIENDICA_PATH/store" ]; then
- mkdir "$FRIENDICA_PATH/store"
- fi
- if [ ! -d "$FRIENDICA_PATH/store/[data]" ]; then
- mkdir "$FRIENDICA_PATH/store/[data]"
- fi
- if [ ! -d "$FRIENDICA_PATH/store/[data]/smarty3" ]; then
- mkdir "$FRIENDICA_PATH/store/[data]/smarty3"
- chmod 1777 "$FRIENDICA_PATH/store/[data]/smarty3"
- fi
- chmod 1777 "$FRIENDICA_PATH/view/tpl"
- chown -R www-data:www-data "$FRIENDICA_PATH/store"
- chmod 1777 "$FRIENDICA_PATH/view/tpl/smarty3"
-
- # Ensure that the database gets backed up locally, if remote
- # backups are not being used
- function_check backup_databases_script_header
- backup_databases_script_header
-
- function_check backup_database_local
- backup_database_local friendica
-
- chown -R www-data:www-data "$FRIENDICA_PATH"
-
- function_check nginx_ensite
- nginx_ensite "$FRIENDICA_DOMAIN_NAME"
-
- # initialize the database
- if [ ! -f "$FRIENDICA_PATH/database.sql" ]; then
- echo $'No database schema found for friendica'
- exit 252782
- fi
- function_check initialise_database
- initialise_database friendica "$FRIENDICA_PATH/database.sql"
-
- # create the config file
- { echo '<?php';
- echo "\$db_host = 'localhost';";
- echo "\$db_user = 'root';";
- echo "\$db_pass = '${MARIADB_PASSWORD}';";
- echo "\$db_data = 'friendica';";
- echo "\$default_timezone = 'Europe/London';"; } > "$FRIENDICA_PATH/.htconfig.php"
- if [[ $ONION_ONLY == 'no' ]]; then
- echo "\$a->config['system']['baseurl'] = 'https://${FRIENDICA_DOMAIN_NAME}';" >> "$FRIENDICA_PATH/.htconfig.php"
- else
- echo "\$a->config['system']['baseurl'] = 'http://${FRIENDICA_ONION_HOSTNAME}';" >> "$FRIENDICA_PATH/.htconfig.php"
- fi
- { echo "\$a->config['sitename'] = \"Friendica\";";
- echo "\$a->config['register_policy'] = REGISTER_OPEN;";
- echo "\$a->config['register_text'] = '';";
- echo "\$a->config['admin_email'] = '${MY_EMAIL_ADDRESS}';";
- echo "\$a->config['system']['no_regfullname'] = true;";
- echo "\$a->config['max_import_size'] = 200000;";
- echo "\$a->config['system']['maximagesize'] = 800000;";
- echo "\$a->config['php_path'] = '/usr/bin/php';";
- echo "\$a->config['system']['directory'] = 'http://dir.friendi.ca';";
- echo "\$a->config['system']['allowed_themes'] = 'quattro,vier,duepuntozero,smoothly';";
- echo "\$a->config['system']['theme'] = 'vier';";
- echo "\$a->config['system']['huburl'] = '[internal]';";
- echo "\$a->config['system']['language'] = 'en';";
- echo "\$a->config['system']['rino_encrypt'] = 2;";
- echo "\$a->config['system']['allowed_link_protocols'] = array('mailto', 'cid');"; } >> "$FRIENDICA_PATH/.htconfig.php"
- chown www-data:www-data "$FRIENDICA_PATH/.htconfig.php"
- chmod 755 "$FRIENDICA_PATH/.htconfig.php"
-
- systemctl restart mariadb
- systemctl restart php7.0-fpm
- systemctl restart nginx
- systemctl restart cron
-
- "${PROJECT_NAME}-addemail" -u "$MY_USERNAME" -e "noreply@$FRIENDICA_DOMAIN_NAME" -g friendica --public no
-
- set_completion_param "friendica domain" "${FRIENDICA_DOMAIN_NAME}"
- APP_INSTALLED=1
- }
-
- # NOTE: deliberately there is no "exit 0"
|