FusionAuth
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    • Login
    1. Home
    2. coolkumarsuman
    C
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 4
    • Best 0
    • Controversial 0
    • Groups 0

    coolkumarsuman

    @coolkumarsuman

    0
    Reputation
    1
    Profile views
    4
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    coolkumarsuman Unfollow Follow

    Latest posts made by coolkumarsuman

    • RE: how to change port no. 9011 (fusionauth) to 80 or any port like 443 is it possible ????

      this section for localhost

      server {

      listen 80;
      

      server_name YOURSITENAME.COM;

      location / {
          proxy_pass http://127.0.0.1:9011;
          proxy_set_header Host $host;
          proxy_set_header X-Real-IP $remote_addr;
          proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
          proxy_set_header X-Forwarded-Proto $scheme;
      }
      

      }
      #######################################################################

      this section for https (ssl)
      server {
      listen 443 ssl http2;
      listen [::]:443 ssl http2;
      server_name YOURSITENAME.COM;

      location / {
          proxy_pass http://127.0.0.1:9011;
          proxy_set_header Host $host;
          proxy_set_header X-Real-IP $remote_addr;
          proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
          proxy_set_header X-Forwarded-Proto $scheme;
      }
      

      }

      posted in Q&A
      C
      coolkumarsuman
    • RE: how to change port no. 9011 (fusionauth) to 80 or any port like 443 is it possible ????

      Thanks
      Now I run fusionauth with SSL
      now I have an open site with SSL
      but I do not follow the above code

      now its work prefectly

      THANKS AGAIN Fusionauth team

      posted in Q&A
      C
      coolkumarsuman
    • RE: how to change port no. 9011 (fusionauth) to 80 or any port like 443 is it possible ????

      Thanks for reply

      It's working with nginx proxy

      but after credential submit showing this error (picture 3)❌
      1.png

      2.png

      3.png

      posted in Q&A
      C
      coolkumarsuman
    • how to change port no. 9011 (fusionauth) to 80 or any port like 443 is it possible ????

      Re: Can't get by Maintenance Mode

      posted in Q&A
      C
      coolkumarsuman