4

サイド プロジェクトの食事プランナー ツールの PoC をまとめています。nginx と uwsgi を使用して AWS で実行されている django を使用しています。サイトは実行中でページを読み込んでいますが、ブラウザーに渡される CSRF Coo​​kie はありません。

CSRF とメッセージ ミドルウェアの両方が有効になっており、django のデバッグ出力に「CSRF_COOKIE」の値がリストされており、ブラウザで Cookie が有効になっているため、Django が nginx または uwsgi によって取り除かれる Cookie を設定しようとしていると思われます。

以下の構成情報:

uwsgi.ini

[uwsgi]
chdir=/opt/django/mealplanner/src/mealplanner/
module=mealplanner.wsgi:application
master=True
autoload=True
pidfile=/opt/run/mealplanner.pid
vacuum=True
max-requests=5000
socket=/opt/run/mealplanner.sock
chmod-socket=True
harakiri=120
processes=1
home=/opt/django/mealplanner/src
daemonize=/opt/log/uwsgi/mealplanner.log

nginx.conf

user www-data;
worker_processes 1;
pid /opt/run/nginx.pid;

events {
        worker_connections 768;
        # multi_accept on;                                                                                 
}

http {

        ##                                                                                                 
        # Basic Settings                                                                                   
        ##                                                                                                 

        sendfile on;
        tcp_nopush on;
        tcp_nodelay on;
        keepalive_timeout 65;
        types_hash_max_size 2048;
        # server_tokens off;                                                                               

        # server_names_hash_bucket_size 64;                                                                
        # server_name_in_redirect off;                                                                     

        include /etc/nginx/mime.types;
        default_type application/octet-stream;

        ##                                                                                                 
        # Logging Settings                                                                                 
        ##                                                                                                 

        access_log /opt/log/nginx/access.log;
        error_log /opt/log/nginx/error.log;

        ##                                                                                                 
        # Gzip Settings                                                                                    
        ##                                                                                                 

        gzip on;
        gzip_disable "msie6";

        # gzip_vary on;                                                                                    
        gzip_proxied any;
        gzip_comp_level 2;
        # gzip_buffers 16 8k;                                                                              
        # gzip_http_version 1.1;                                                                           
        gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml \
application/xml+rss text/javascript;

        server {
               listen 80;
               # I've also tried the dns name I access the site with as the server name.
               server_name ec2-xx-xx-xx-xx.us-west-2.compute.amazonaws.com xx.xx.xx.xx;
               client_max_body_size 50M;
               set $home /opt/django/mealplanner;
               root $home;
               location / {
                        include uwsgi_params;
                        uwsgi_pass unix://opt/run/mealplanner.sock;
                        root $home;
               }
        }

        ##                                                                                                 
        # Virtual Host Configs                                                                             
        ##                                                                                                 

        include /etc/nginx/conf.d/*.conf;
        include /etc/nginx/sites-enabled/*;
}
4

1 に答える 1

3

問題はおそらくnginx.confのserver_nameにあるようです。それは突然機能し始めました、そして私が変更した唯一のことはserver_nameをサイトのドメイン名と一致させることでした。一方、元に戻すと問題が再発するようには見えなかったため、nginxを適切に再起動していないか、結局のところ問題ではありませんでした。

サイトは現在機能していますが、原因と解決策を十分に理解していない状況の1つであるため、誰かがこの仮説を確認したり、他のことを指摘したりできる場合は、入力を歓迎します。

于 2012-07-23T01:37:58.067 に答える