2022-06-15 04:17:59 +00:00
|
|
|
# This file contains a base configuration file for the projectathens
|
|
|
|
# It is to be overwritten by certbot later on so adjusting this config
|
|
|
|
# should not happen on the target server
|
|
|
|
|
|
|
|
server {
|
2022-07-25 06:33:32 +00:00
|
|
|
server_name files.leftcoast.space;
|
2022-06-15 04:17:59 +00:00
|
|
|
location / {
|
|
|
|
proxy_pass http://127.0.0.1:8000;
|
|
|
|
}
|
2022-06-24 19:24:10 +00:00
|
|
|
# Because we take large video/image file uploads
|
|
|
|
client_max_body_size 100M;
|
2022-06-15 04:17:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|