mirror of https://github.com/grpc/grpc-web.git
Minor fix to nginx dockerfile
This commit is contained in:
parent
ff67114739
commit
3b4bfe2280
|
|
@ -14,6 +14,9 @@
|
||||||
|
|
||||||
FROM grpc-web:prereqs
|
FROM grpc-web:prereqs
|
||||||
|
|
||||||
|
RUN cd /github/grpc-web/net/grpc/gateway/examples/echo && \
|
||||||
|
sed -i 's/localhost:9090/echo-server:9090/g' nginx.conf
|
||||||
|
|
||||||
RUN cd /github/grpc-web && \
|
RUN cd /github/grpc-web && \
|
||||||
make standalone-proxy
|
make standalone-proxy
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ http {
|
||||||
root /var/www/html;
|
root /var/www/html;
|
||||||
}
|
}
|
||||||
location / {
|
location / {
|
||||||
grpc_pass echo-server:9090;
|
grpc_pass localhost:9090;
|
||||||
if ($request_method = 'OPTIONS') {
|
if ($request_method = 'OPTIONS') {
|
||||||
add_header 'Access-Control-Allow-Origin' '*';
|
add_header 'Access-Control-Allow-Origin' '*';
|
||||||
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
|
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue