Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Special pages
jb-vpn.uk Wiki
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
Services:Configuration Options
Page
Discussion
English
Read
Edit
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
View history
General
What links here
Related changes
Page information
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
This document describes advanced configuration options for services. == Custom Timeouts == For services that need longer timeouts: <pre class="lang-nginx"> proxy_read_timeout 600s; # 10 minutes proxy_connect_timeout 75s; proxy_send_timeout 600s; </pre> == WebSocket Support == For WebSocket applications (already included in template): <pre class="lang-nginx"> proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; </pre> == Custom Headers == Some services require specific headers. Add them in the location block: <pre class="lang-nginx"> proxy_set_header X-Custom-Header "value"; proxy_set_header Authorization $http_authorization; </pre> == Buffer Settings == For large file uploads or downloads: <pre class="lang-nginx"> client_max_body_size 100M; proxy_buffering off; </pre> == Bypass SSL Verification (Internal HTTPS) == If your internal service uses self-signed certificates: <pre class="lang-nginx"> proxy_ssl_verify off; proxy_ssl_trusted_certificate /path/to/ca.crt; </pre> '''Warning''': Only use this for internal services, never for external connections. == Related Documentation == * [Step-by-Step Process](step-by-step.md) - Basic setup * [Service Examples](service-examples.md) - Example configurations [[Category:Documentation]] [[Category:Documentation/Services]] [[Category:Documentation/Services/Adding Services]]
Summary:
Please note that all contributions to jb-vpn.uk Wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
Jb-vpn.uk Wiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Search
Search
Editing
Services:Configuration Options
Add topic