mirror of https://github.com/statping/statping
13 lines
159 B
Nginx Configuration File
13 lines
159 B
Nginx Configuration File
![]() |
worker_processes 1;
|
||
|
|
||
|
events { worker_connections 1024; }
|
||
|
|
||
|
http {
|
||
|
server {
|
||
|
location / {
|
||
|
proxy_pass http://statping:8080;
|
||
|
}
|
||
|
listen 80;
|
||
|
}
|
||
|
}
|