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)













0















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










share|improve this question







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.
























    0















    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










    share|improve this question







    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.






















      0












      0








      0








      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










      share|improve this question







      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






      share|improve this question







      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.











      share|improve this question







      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.









      share|improve this question




      share|improve this question






      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.




















          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.









          draft saved

          draft discarded


















          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.









          draft saved

          draft discarded


















          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          How to write a 12-bar blues melodyI-IV-V blues progressionHow to play the bridges in a standard blues progressionHow does Gdim7 fit in C# minor?question on a certain chord progressionMusicology of Melody12 bar blues, spread rhythm: alternative to 6th chord to avoid finger stretchChord progressions/ Root key/ MelodiesHow to put chords (POP-EDM) under a given lead vocal melody (starting from a good knowledge in music theory)Are there “rules” for improvising with the minor pentatonic scale over 12-bar shuffle?Confusion about blues scale and chords

          What if the end-user didn't have the required library?What is setup.py?What is a clean, pythonic way to have multiple constructors in Python?What does Ruby have that Python doesn't, and vice versa?What is the reason for having '//' in Python?How do I create a namespace package in Python?How to package shared objects that python modules depend on?setuptools vs. distutils: why is distutils still a thing?Navigation in Windows 10 vs code not going to virtualenv library when the same library is installed at user levelPython create package for local usePackaging a project that uses multiple python versionsWhy is permission denied on pip install except for when “--user” is included at end of command?

          Esgonzo ibérico Índice Descrición Distribución Hábitat Ameazas Notas Véxase tamén "Acerca dos nomes dos anfibios e réptiles galegos""Chalcides bedriagai"Chalcides bedriagai en Carrascal, L. M. Salvador, A. (Eds). Enciclopedia virtual de los vertebrados españoles. Museo Nacional de Ciencias Naturales, Madrid. España.Fotos