bookwyrm/nginx/production
Jason Kelly e138a585d1 Setting client_max_body_size to 10m.
- Removed commented-out nginx config for clarity.
2021-05-23 14:08:22 +08:00

16 lines
233 B
Plaintext

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;
}
}