20 lines
332 B
Nginx Configuration File
20 lines
332 B
Nginx Configuration File
worker_processes auto;
|
|
daemon off;
|
|
error_log nginx_error.log;
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
include /etc/nginx/mime.types;
|
|
server {
|
|
|
|
location /submit {
|
|
proxy_pass http://10.0.0.200:9000/submit;
|
|
}
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
}
|
|
}
|
|
}
|