Permission denied - nginx and uwsgi socket

前端 未结 9 1807
暗喜
暗喜 2020-12-07 17:44

Well I am currently trying to get my django application served using nginx and uwsgi. I am currently using a virtual environment to which uwsgi is installed. However I am cu

9条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-07 17:56

    you need to uncomment

    #server 127.0.0.1:8001;
    

    from upstream block and similarly do the changes in uwsgi.ini as

    socket = 127.0.0.1:8001
    

提交回复
热议问题