20 lines
310 B
Nginx Configuration File
20 lines
310 B
Nginx Configuration File
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
server {
|
|
listen 8080;
|
|
server_name localhost;
|
|
|
|
location /static/ {
|
|
alias /app/data/static/;
|
|
}
|
|
|
|
location / {
|
|
include uwsgi_params;
|
|
uwsgi_pass unix:///tmp/uwsgi.sock;
|
|
}
|
|
}
|
|
}
|