Added all common modules in conductor directory
[optf/has.git] / conductor / examples / nginx / nginx.conf
1 # This is an example nginx configuration file for using the
2 # conductor API through uWSGI. Include the "server" section
3 # within the broader "http" configuration.
4
5 http {
6     server {
7         listen       8091;
8         server_name  CONDUCTOR_API_FQDN;
9
10         location / {
11             include    uwsgi_params;
12             uwsgi_pass unix:/tmp/uwsgi.sock;
13         }
14     }
15 }