Apache 2.4: mod_proxy_http2 and Proxy balancerServing multiple sites with Apache Proxy BalancerApache2 mod_proxy with gitlab on different serverApache 2.4 Proxy Connect - connection resetFreeBSD Apache 2.4 rewrite/proxy module errorsApache Proxy & Basic AuthStatic Tomcat Cluster become unresponsive on a JDBC procedure callAuthentication works for filesystem but not reverse proxyIssues with file uploads with apache 2.4 + http2 + proxy_httpApache Proxy Balancer fails to recognize a dead serverHow to fix misredirection after rewriting Symfony4's 302 redirected URL (to login page)
What's the in-universe reasoning behind sorcerers needing material components?
What historical events would have to change in order to make 19th century "steampunk" technology possible?
Detention in 1997
Could the museum Saturn V's be refitted for one more flight?
Alternative to sending password over mail?
How to prevent "they're falling in love" trope
Extract rows of a table, that include less than x NULLs
What are some good books on Machine Learning and AI like Krugman, Wells and Graddy's "Essentials of Economics"
CAST throwing error when run in stored procedure but not when run as raw query
What does “the session was packed” mean in this context?
What is the idiomatic way to say "clothing fits"?
GFCI outlets - can they be repaired? Are they really needed at the end of a circuit?
Why didn't Boeing produce its own regional jet?
Madden-Julian Oscillation (MJO) - How to interpret the index?
How would I stat a creature to be immune to everything but the Magic Missile spell? (just for fun)
Why can't we play rap on piano?
Why would the Red Woman birth a shadow if she worshipped the Lord of the Light?
How can I deal with my CEO asking me to hire someone with a higher salary than me, a co-founder?
How dangerous is XSS?
Do scales need to be in alphabetical order?
Probability that a draw from a normal distribution is some number greater than another draw from the same distribution
Is it logically or scientifically possible to artificially send energy to the body?
Why doesn't using multiple commands with a || or && conditional work?
Avoiding the "not like other girls" trope?
Apache 2.4: mod_proxy_http2 and Proxy balancer
Serving multiple sites with Apache Proxy BalancerApache2 mod_proxy with gitlab on different serverApache 2.4 Proxy Connect - connection resetFreeBSD Apache 2.4 rewrite/proxy module errorsApache Proxy & Basic AuthStatic Tomcat Cluster become unresponsive on a JDBC procedure callAuthentication works for filesystem but not reverse proxyIssues with file uploads with apache 2.4 + http2 + proxy_httpApache Proxy Balancer fails to recognize a dead serverHow to fix misredirection after rewriting Symfony4's 302 redirected URL (to login page)
I want to combine mode_proxy_http2 and Proxy balancer and I wonder if it's possible :
Here is my current configuration :
- one proxypass with a balancer
- one proxypass without balancer
I figure out to set the http2 for the roxypass without balancer
but If if I put h2 in the balancer section it doesn't work.
any Idea ?
Header add Set-Cookie "AJSESSIONID=.%BALANCER_WORKER_ROUTEe; path=/" env=BALANCER_ROUTE_CHANGED
<Proxy balancer://mybalancer>
BalancerMember https://myserver1.mydomain.com:6443 route=1
BalancerMember https://myserver2.mydomain.com:6443 route=1
ProxySet stickysession=AJSESSIONID
ProxySet lbmethod=bybusyness failonstatus=500,502,503,504 failontimeout=on
</Proxy>
# Redirection vers les Server
ProxyPass /server balancer://mybalancer/server
ProxyPassReverse /server balancer://mybalancer/server
# redirection vers tomcat portal
ProxyPass /portal h2://myserver3.mydomain.com:9443/portal timeout=300 connectiontimeout=10
ProxyPassReverse /portal https://myserver3.mydomain.com:9443/portal
Best regards
xlhomme
apache-2.4 mod-proxy proxypass http2 mod-balancer
New contributor
xavier lhomme is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I want to combine mode_proxy_http2 and Proxy balancer and I wonder if it's possible :
Here is my current configuration :
- one proxypass with a balancer
- one proxypass without balancer
I figure out to set the http2 for the roxypass without balancer
but If if I put h2 in the balancer section it doesn't work.
any Idea ?
Header add Set-Cookie "AJSESSIONID=.%BALANCER_WORKER_ROUTEe; path=/" env=BALANCER_ROUTE_CHANGED
<Proxy balancer://mybalancer>
BalancerMember https://myserver1.mydomain.com:6443 route=1
BalancerMember https://myserver2.mydomain.com:6443 route=1
ProxySet stickysession=AJSESSIONID
ProxySet lbmethod=bybusyness failonstatus=500,502,503,504 failontimeout=on
</Proxy>
# Redirection vers les Server
ProxyPass /server balancer://mybalancer/server
ProxyPassReverse /server balancer://mybalancer/server
# redirection vers tomcat portal
ProxyPass /portal h2://myserver3.mydomain.com:9443/portal timeout=300 connectiontimeout=10
ProxyPassReverse /portal https://myserver3.mydomain.com:9443/portal
Best regards
xlhomme
apache-2.4 mod-proxy proxypass http2 mod-balancer
New contributor
xavier lhomme is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I want to combine mode_proxy_http2 and Proxy balancer and I wonder if it's possible :
Here is my current configuration :
- one proxypass with a balancer
- one proxypass without balancer
I figure out to set the http2 for the roxypass without balancer
but If if I put h2 in the balancer section it doesn't work.
any Idea ?
Header add Set-Cookie "AJSESSIONID=.%BALANCER_WORKER_ROUTEe; path=/" env=BALANCER_ROUTE_CHANGED
<Proxy balancer://mybalancer>
BalancerMember https://myserver1.mydomain.com:6443 route=1
BalancerMember https://myserver2.mydomain.com:6443 route=1
ProxySet stickysession=AJSESSIONID
ProxySet lbmethod=bybusyness failonstatus=500,502,503,504 failontimeout=on
</Proxy>
# Redirection vers les Server
ProxyPass /server balancer://mybalancer/server
ProxyPassReverse /server balancer://mybalancer/server
# redirection vers tomcat portal
ProxyPass /portal h2://myserver3.mydomain.com:9443/portal timeout=300 connectiontimeout=10
ProxyPassReverse /portal https://myserver3.mydomain.com:9443/portal
Best regards
xlhomme
apache-2.4 mod-proxy proxypass http2 mod-balancer
New contributor
xavier lhomme is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I want to combine mode_proxy_http2 and Proxy balancer and I wonder if it's possible :
Here is my current configuration :
- one proxypass with a balancer
- one proxypass without balancer
I figure out to set the http2 for the roxypass without balancer
but If if I put h2 in the balancer section it doesn't work.
any Idea ?
Header add Set-Cookie "AJSESSIONID=.%BALANCER_WORKER_ROUTEe; path=/" env=BALANCER_ROUTE_CHANGED
<Proxy balancer://mybalancer>
BalancerMember https://myserver1.mydomain.com:6443 route=1
BalancerMember https://myserver2.mydomain.com:6443 route=1
ProxySet stickysession=AJSESSIONID
ProxySet lbmethod=bybusyness failonstatus=500,502,503,504 failontimeout=on
</Proxy>
# Redirection vers les Server
ProxyPass /server balancer://mybalancer/server
ProxyPassReverse /server balancer://mybalancer/server
# redirection vers tomcat portal
ProxyPass /portal h2://myserver3.mydomain.com:9443/portal timeout=300 connectiontimeout=10
ProxyPassReverse /portal https://myserver3.mydomain.com:9443/portal
Best regards
xlhomme
apache-2.4 mod-proxy proxypass http2 mod-balancer
apache-2.4 mod-proxy proxypass http2 mod-balancer
New contributor
xavier lhomme is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
xavier lhomme is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
xavier lhomme is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 2 days ago
xavier lhommexavier lhomme
11
11
New contributor
xavier lhomme is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
xavier lhomme is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
xavier lhomme is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "2"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
xavier lhomme is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f960975%2fapache-2-4-mod-proxy-http2-and-proxy-balancer%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
xavier lhomme is a new contributor. Be nice, and check out our Code of Conduct.
xavier lhomme is a new contributor. Be nice, and check out our Code of Conduct.
xavier lhomme is a new contributor. Be nice, and check out our Code of Conduct.
xavier lhomme is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f960975%2fapache-2-4-mod-proxy-http2-and-proxy-balancer%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown