Wednesday, August 16, 2023

502 Bad Gateway


>PROBLEM

Attempt to access the site returns:

502 Bad Gateway


>SOLUTION

Scenario: there is a server interfacing with external requests like Nginx or Apache.

In such cases, the application behind the Nginx, Apache, etc. may have stopped working, returning no answer.

Go to the application's log and check its state.

Make sure that it is responsive.


>ENV

- x -


No comments:

Post a Comment

eclipse: java: SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder" or Exception in thread "main" java.lang.NoClassDefFoundError: org/slf4j/impl/StaticLoggerBinder

  >PROBLEM Using Eclipse, you try to run a simple logging test using "org.slf4j.Logger" like the sample below: package Test; im...