X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=buster%2Fsetup_scripts%2Fsetup_pleroma.sh;h=7dd7b3f982dda0e66698f8924aaef2e5e638b099;hb=08fcaeb6b6e33fcf226a738306ae808529eac6e9;hp=cb7725a0fa43f9970243d3c620acd9b10838d9aa;hpb=d3fe8fac40ebd5db0553de95ae356b1995046b0a;p=config diff --git a/buster/setup_scripts/setup_pleroma.sh b/buster/setup_scripts/setup_pleroma.sh index cb7725a..7dd7b3f 100755 --- a/buster/setup_scripts/setup_pleroma.sh +++ b/buster/setup_scripts/setup_pleroma.sh @@ -12,11 +12,13 @@ mail="$2" # Install dependencies, set up firewall. config_tree_prefix="${HOME}/config/buster" ./install_for_target.sh pleroma -./copy_dirtree.sh "${config_tree_prefix}/etc_files" "" pleroma +./copy_dirtree.sh "${config_tree_prefix}/etc_files" "" web nft -f /etc/nftables.conf # Set up letsencrypt certificate. TODO: Is it auto-renewed? +ln -sf /etc/nginx/sites-available/default /etc/nginx/sites-enabled/default certbot --nginx --agree-tos --redirect --no-eff-email -m "${mail}" -d "${domain}" +rm /etc/nginx/sites-enabled/default # Prepare user. adduser --system --shell /bin/false --home /opt/pleroma pleroma @@ -61,13 +63,20 @@ su pleroma -s $SHELL -lc "./bin/pleroma_ctl migrate" # Since the OTP release does not support .secret.exs configuration # files, we hack our own alternative by simply appending custom # configurations to /etc/config.exs. -cat "${config_tree_prefix}/other_files/append_pleroma_config" >> /etc/config.exs +cat "${config_tree_prefix}/other_files/append_pleroma_config" >> /etc/pleroma/config.exs + +# Single-pixel picture hack for removing Pleroma FE images. +cp "${config_tree_prefix}/other_files/pixel.png" /var/lib/pleroma/static/ +chown pleroma:nogroup /var/lib/pleroma/static/pixel.png + +# Info panel. +mkdir -p /var/lib/pleroma/static/instance +cp "${config_tree_prefix}/other_files/pleroma_panel.html" /var/lib/pleroma/static/instance/panel.html # Prepare NGINX config for Pleroma. cp /opt/pleroma/installation/pleroma.nginx /etc/nginx/sites-available/pleroma.nginx sed -i "s/example\.tld/${domain}/g" /etc/nginx/sites-available/pleroma.nginx ln -s /etc/nginx/sites-available/pleroma.nginx /etc/nginx/sites-enabled/pleroma.nginx -rm /etc/nginx/sites-enabled/default # Systemd integration. cp /opt/pleroma/installation/pleroma.service /etc/systemd/system/pleroma.service