Nginx教程

nginx转发到uwsgi的配置

本文主要是介绍nginx转发到uwsgi的配置,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
server{
    server_name ;
    listen 80 default_server;
    
    add_header Access-Control-Allow-Origin *;
    add_header Access-Control-Allow-Methods 'GET,POST';
    add_header Access-Control-Allow-Headers 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization'; 

    access_log /var/log/nginx/uwsgi_xxx.log;
    location / {
        include uwsgi_params;
        uwsgi_pass unix:/myfiles/my_project/my_project/script/uwsgi.sock;
    }
}

add_header 跨域配置

这篇关于nginx转发到uwsgi的配置的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!