skip to Main Content

nginx grpc_pass works only on root

This works: server { listen 5005 http2; location / { grpc_pass grpc://my_app:5001; } default_type application/grpc; } this doesnt work: server { listen 5005 http2; location /test { grpc_pass grpc://my_app:5001; } default_type application/grpc; } I receive logs when I go to…

VIEW QUESTION

nginx reverse proxy+rundeck is not wokring as expected

I want to use rundeck with NBINX reverse proxy but not working as exptected. rundeck is at: http://host.domain:4440/rundeck nginx reverse proxy is at: https://host.domain/rundeck nginx's configuration: location /rundeck/ { proxy_http_version 1.1; proxy_set_header X-Forwarded-Proto https; proxy_pass http://192.168.1.102:4440/rundeck/; } rundeck's customize: RUNDECK_SERVER_CONTEXTPATH=/rundeck…

VIEW QUESTION

Apache reverse proxy – URL without / is refused

I use reverse proxy to show backend server content for a subdomain. The subdomain.mydomain.com (server A) should display content of server with IP 123.123.123.123 port 1111 (server B). Virtual host of subdomain.mydomain.com (server A): <IfModule mod_ssl.c> <VirtualHost *:443> ServerName subdomain.mydomain.com…

VIEW QUESTION

nginx reverse-proxy rewriting custom header (NOT URL)

I am trying to rewrite custom header information like "Author" (not part of the URL) using nginx reverse proxy. The header information "Author:" should be rewritten from "test123" to e.g. "BASIC" command: admin1@nginx1:~$ curl -x 192.168.175.134:80 http://home1.MyWeb.eu:8081/home1/index.html?t=1 -H "Author: test123"…

VIEW QUESTION
Back To Top
Search