+ python projects nginx example config and postgis and additional python server docker examples

This commit is contained in:
WP Studio
2025-06-24 13:53:08 +03:00
parent 92cefd6fcd
commit 4c410fa89f
4 changed files with 56 additions and 0 deletions

View File

@ -22,7 +22,14 @@ server {
root $python_root;
location @media_proxy {
proxy_pass $uploads_upstream;
proxy_ssl_server_name on;
}
location ~ /media {
root $python_root;
try_files $uri @media_proxy;
expires max;
}