Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bug] doc for Nginx self-hosted incorrect #574

Open
1 task done
Rjvs opened this issue Aug 21, 2024 · 0 comments
Open
1 task done

[bug] doc for Nginx self-hosted incorrect #574

Rjvs opened this issue Aug 21, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@Rjvs
Copy link

Rjvs commented Aug 21, 2024

Is there an existing issue for this?

  • I have searched the existing issues

Current Behavior

Includes proxy-pass and grpc-pass in a single entry:

	server {
		listen 0.0.0.0:443 http2 ssl ;
		listen [::0]:443 http2 ssl ;
		server_name $OMNI_DOMAIN ;
		ssl_certificate /var/lib/acme/omni/fullchain.pem;
		ssl_certificate_key /var/lib/acme/omni/key.pem;
		ssl_trusted_certificate /var/lib/acme/omni/chain.pem;
		location / {
			proxy_pass http://127.0.0.1:8080;
			proxy_http_version 1.1;
			proxy_set_header Upgrade $http_upgrade;
			proxy_set_header Connection $connection_upgrade;
			grpc_pass grpc://127.0.0.1:8080;
		}
	}

Expected Behavior

Valid nginx conf

Steps To Reproduce

Read the docs

What browsers are you seeing the problem on?

Firefox, Chrome, Safari

Anything else?

No response

@Rjvs Rjvs added the bug Something isn't working label Aug 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant