This commit is contained in:
2026-04-16 11:25:40 +05:00
parent 2ba5677c45
commit 3aa4601229
13 changed files with 80 additions and 234 deletions

View File

@@ -9,6 +9,14 @@ server {
root /quyoshli/public;
index index.php;
# MinIO bucket proxy — serves files over HTTPS
location /quyoshli/ {
proxy_pass http://quyoshli-minio:9100/quyoshli/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_buffering off;
}
# try to serve file directly, fallback to start.php
location / {
try_files $uri /$uri /index.php$is_args$args;