forked from mirrors/bookwyrm
e138a585d1
- Removed commented-out nginx config for clarity.
15 lines
233 B
Text
15 lines
233 B
Text
upstream web {
|
|
server web:8000;
|
|
}
|
|
|
|
server {
|
|
listen [::]:80;
|
|
listen 80;
|
|
|
|
include /etc/nginx/conf.d/server_config;
|
|
|
|
location ~ /.well-known/acme-challenge {
|
|
allow all;
|
|
root /var/www/certbot;
|
|
}
|
|
}
|