Skip to content

Live Logging of Jobs does not work behind Apache Reverse Proxy #1811

Closed Answered by Renasb23
Renasb23 asked this question in Q&A
Discussion options

You must be logged in to vote

yes you were correct.
If someone else has the same Issue, this is the necessary Apache Config options:

<Location />
    ProxyPass http://127.0.0.1:3000/
    ProxyPassReverse http://127.0.0.1:3000/
</Location>

<Location /api/ws>
    ProxyPass ws://127.0.0.1:3000/api/ws/
</Location>

ProxyPreserveHost off
ProxyRequests off
RemoteIPHeader X-Forwarded-For

<Proxy *>
    Require all granted
</Proxy>

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by tboerger
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #1808 on March 06, 2024 15:30.