fix: full google ads report in CSV, html export disabled

This commit is contained in:
Gemini AI
2025-12-29 15:26:37 +04:00
Unverified
parent 7b1d33f09d
commit 7cdbe7a74e
3 changed files with 49 additions and 128 deletions

21
nginx_config_simple Normal file
View File

@@ -0,0 +1,21 @@
server {
listen 80;
server_name www.rommark.dev rommark.dev;
location /tools/promptarch/ {
proxy_pass http://127.0.0.1:3000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location / {
root /var/www/html;
index index.nginx-debian.html index.html;
try_files $uri $uri/ =404;
}
}