All checks were successful
rtj.dev Build and Deploy / Build-and-Deploy (push) Successful in 1m3s
16 lines
171 B
Plaintext
16 lines
171 B
Plaintext
server {
|
|
listen 80;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 8080;
|
|
|
|
location /stub_status {
|
|
stub_status;
|
|
}
|
|
}
|