PARTIALLY SOLVED!!

The trouble seems to be with memcached.  I commented out references to 
memcached in the nginx configuration, and things started working properly.

I assume the admin page can be used with memcached, but something is wrong 
with my configuration.  Maybe related to the post command?  (so far, the 
rest of my site uses "get" only, other than the admin pages).

below is a snip from the nginx configuration file (in sites-available).   
The memcached lines are commented out:

    location / {
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header Host $http_host;
        proxy_redirect off;
        proxy_pass http://app_server;
        
        #set $memcached_key "$uri?$args";
        #memcached_pass 127.0.0.1:11211;
        #error_page 404 502 504 = @fallback;
    }
    
    location @fallback {
    proxy_pass http://app_server;
    }

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/75a599b1-d9a7-4b9e-b4d7-a3c964a3ace5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to