17 lines
237 B
Nginx Configuration File
17 lines
237 B
Nginx Configuration File
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
server {
|
|
listen 80;
|
|
|
|
location /report {
|
|
proxy_pass http://bot:3123;
|
|
}
|
|
|
|
location / {
|
|
proxy_pass http://web:5000;
|
|
}
|
|
}
|
|
} |