Othman Boūlal
Othman Boūlal

Reputation: 81

502 Bad Gateway nginx Laravel 8

I've made an webapplication, and a page called window only screen that automatically refreshes every 30 seconds. with <meta http-equiv="refresh" content="30">

But after a few moments i see 502 Bad Gateway nginx, after refreshing some times. And when I refresh it by myself the page returns normal

Upvotes: 0

Views: 259

Answers (1)

Yunus Kocabay
Yunus Kocabay

Reputation: 133

Also try this method

<script>
  $(document).ready(function() {
      setTimeout(function(){
          location.reload();
      }, 30000); // 30 sec
  });
</script>

Upvotes: 1

Related Questions