16 lines
202 B
Nginx Configuration File
16 lines
202 B
Nginx Configuration File
events {
|
|
worker_connections 1000;
|
|
}
|
|
|
|
http {
|
|
upstream vpki.web.api {
|
|
server vpki.web.api:5555;
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
location / {
|
|
proxy_pass https://vpki.web.api/;
|
|
}
|
|
}
|
|
} |