Переписал всё, сейчас вроде как отрабатывает без ошибок
This commit is contained in:
parent
436adfbc4f
commit
26f2ea374d
49 changed files with 1404 additions and 169 deletions
16
roles/pleroma_postinstall/templates/pleroma.nginx.j2
Normal file
16
roles/pleroma_postinstall/templates/pleroma.nginx.j2
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
server {
|
||||
server_name {{ pleroma_building_domain }};
|
||||
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
|
||||
# Uncomment this if you need to use the 'webroot' method with certbot. Make sure
|
||||
# that the directory exists and that it is accessible by the webserver. If you followed
|
||||
# the guide, you already ran 'mkdir -p /var/lib/letsencrypt' to create the folder.
|
||||
# You may need to load this file with the ssl server block commented out, run certbot
|
||||
# to get the certificate, and then uncomment it.
|
||||
#
|
||||
location ~ /\.well-known/acme-challenge {
|
||||
root /var/lib/letsencrypt/;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue