-
Notifications
You must be signed in to change notification settings - Fork 818
Improve nginx reverse proxy template #5750
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
Conversation
based on (not identical): https://ssl-config.mozilla.org/#server=nginx&version=1.27.3&config=intermediate&openssl=3.4.0&hsts=false&ocsp=false&guideline=5.7 Signed-off-by: Zoey <[email protected]>
Signed-off-by: Zoey <[email protected]>
I dropped the OCSP part, because Let's encrypt will drop support for it and nginx has no good implementation on its own (with external tools it would be good) |
Signed-off-by: Zoey <[email protected]>
Signed-off-by: Zoey <[email protected]>
Signed-off-by: Zoey <[email protected]>
Signed-off-by: Zoey <[email protected]>
@Zoey2936 is this ready? :) |
Yes |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks a lot! 😊
|
||
server_name <your-nc-domain>; | ||
|
||
location / { | ||
proxy_pass http://127.0.0.1:11000$request_uri; | ||
proxy_pass http://127.0.0.1:11000$request_uri; # adjust to match APACHE_PORT and APACHE_IP_BINDING |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good idea! Should we maybe add this comment for the others as well?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Possible
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
based on (not identical): https://ssl-config.mozilla.org/#server=nginx&version=1.27.3&config=intermediate&openssl=3.4.0&hsts=false&ocsp=false&guideline=5.7