blob: 90f78c95a90738383d6ba523f9a4df14b0d0600b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# This is an example nginx configuration file for using the
# conductor API through uWSGI. Include the "server" section
# within the broader "http" configuration.
http {
server {
listen 8091;
server_name CONDUCTOR_API_FQDN;
location / {
include uwsgi_params;
uwsgi_pass unix:/tmp/uwsgi.sock;
}
}
}
|