current updated nginx config
This commit is contained in:
@@ -37,10 +37,35 @@ http {
|
|||||||
proxy_set_header Host $host;
|
proxy_set_header Host $host;
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
proxy_set_header X-Forwarded-Proto https;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 50051 http2;
|
||||||
|
server_name api.flowy.live;
|
||||||
|
|
||||||
|
default_type application/grpc;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
grpc_pass grpc://192.168.50.105:50051;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
server_name api.flowy.live;
|
||||||
|
|
||||||
|
ssl_certificate /etc/letsencrypt/live/flowy.live/fullchain.pem;
|
||||||
|
ssl_certificate_key /etc/letsencrypt/live/flowy.live/privkey.pem;
|
||||||
|
|
||||||
|
default_type application/grpc;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
grpc_pass grpc://192.168.50.105:50051;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user