我正在尝试使用grpc_pass来将grpc客户端连接到服务器。该文档说,首先我需要安装http2,然后使用grpc_pass。
我尝试从其二进制文件安装nginx,并确保它具有--with-http_v2_module标志。 nginx -V的结果是:
nginx version: nginx/1.10.3 (Ubuntu)`enter code here`
built with OpenSSL 1.0.2g 1 Mar 2016
TLS SNI support enabled
configure arguments: --with-cc-opt='-g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2' --with-ld-opt='-Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now' --prefix=/usr/share/nginx --conf-path=/etc/nginx/nginx.conf --http-log-path=/var/log/nginx/access.log --error-log-path=/var/log/nginx/error.log --lock-path=/var/lock/nginx.lock --pid-path=/run/nginx.pid --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --with-debug --with-pcre-jit --with-ipv6 --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --with-http_auth_request_module --with-http_addition_module --with-http_dav_module --with-http_geoip_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_image_filter_module --with-http_v2_module --with-http_sub_module --with-http_xslt_module --with-stream --with-stream_ssl_module --with-mail --with-mail_ssl_module --with-threads
,我的nginx错误日志文件中包含以下行:
2019/06/08 17:10:46 [emerg] 30854#30854:/etc/nginx/nginx.conf:70
server {
server_name bshadmehr.ir;
listen 80 http2;
location / {
grpc_pass grpc://127.0.0.1:57045;
error_page 502 500 504 = /grpc_error_page;
}
location = /grpc_error_page {
internal;
add_header grpc-status 14;
add_header grpc-message "upstream service failure";
return 204;
}
}
我只是想将用python编写的grpc客户端连接到用python编写的grpc服务器。 使用特定的端口或子域不会有任何作用