Welcome! Log In Create A New Profile

Advanced

Ajax upstream problem /Safari problem

Posted by Pit 
Pit
Ajax upstream problem /Safari problem
April 15, 2010 03:29AM
Hi there,

I have two problems when running nginx in front of my django application server (of course everything is running fine when django is contacted directly). I run IE, Firefox, Chrome and Safari (all current versions, see attached logs) against the server.
[list=1]
[*] only (!) IE does not get an Ajax answer! (request reaches the server!). A "simple synch" GET of a rendered page works fine.
[*] only (!) Safari rejects sending nested GETs (ie. css loading)
[/list]

Does anbyody have a clue?

Here is my simple conf-file (same behaviour when it was running fastcgi, but just passing through eases debugging)
[code]
worker_processes 1;

error_log /temp/nginx_logs/error.log info;

events {
worker_connections 1024;
}


http {
upstream djangoserv {
server 127.0.0.1:8802;
}

server {
listen 80;
root c:\work\workspace\djangoJS;
server_name pitsvaio;

location / {
proxy_pass http://127.0.0.1:8802;
}
location /app24call {
proxy_pass http://127.0.0.1:8802;
}
}
}
[/code]

Any help appreciated.

Thx, Pit.
Attachments:
open | download - logs.zip (1.2 KB)
Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 144
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready