Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where should the uwsgi_params file be located and what is its extension?

I am having trouble wrapping my head around how this file works. I seem to see it in every example. See below:

server {
  listen 80;
  server_name sivusto3.fi;
  access_log /var/log/customersite3/access_log;
  location / {
    root /var/www/customersite3;
    uwsgi_pass 127.0.0.1:3033;
    include uwsgi_params;
  }
}
like image 577
Brian Leach Avatar asked Jun 10 '14 02:06

Brian Leach


Video Answer


1 Answers

uwsgi_params file is located inside Nginx directory (/etc/nginx on my Linux machine)

me:~$ ls /etc/nginx | grep uwsgi
uwsgi_params

and has no extension.

like image 172
vaultah Avatar answered Sep 29 '22 06:09

vaultah