lib.itmens/misc/nginx.conf.d/neodb.conf

23 lines
449 B
Text
Raw Normal View History

server {
server_name neodb.social;
listen 8000;
location = /favicon.ico {
root /www;
access_log off; log_not_found off;
}
location / {
client_max_body_size 100M;
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-Proto https;
proxy_pass http://neodb-web:8000;
}
2023-08-14 08:15:55 -04:00
location /s/ {
root /www;
}
2023-08-14 08:15:55 -04:00
location /m/ {
root /www;
}
}