Navigation

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Tags
    • Users
    • Groups
    1. Home
    2. kailaash
    K
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 7
    • Best 1
    • Groups 0

    kailaash

    @kailaash

    1
    Reputation
    56
    Profile views
    7
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    kailaash Follow

    Best posts made by kailaash

    • RE: Override login screen to redirect directly to sso page.

      That's perfect. Thanks

      posted in NodeBB Plugins
      K
      kailaash

    Latest posts made by kailaash

    • RE: Override login screen to redirect directly to sso page.

      That's perfect. Thanks

      posted in NodeBB Plugins
      K
      kailaash
    • RE: Override login screen to redirect directly to sso page.

      There's a catch here. If you disable login and use just SSO, it is not possible to access the admin page even though you use the admin email. Or is there anyway to override the additional login in the admin page?

      posted in NodeBB Plugins
      K
      kailaash
    • Error in using nodebb-plugin-sso-auth0

      I just installed nodebb-plugin-sso-auth0 and created an app at Auth0. After successfull login at Auth0, when redirected, i get the following error. No restart or build helped.
      Any suggesstions for the prorblem?

      nodebb-plugin-sso-auth0

      Internal Error.
      Oops! Looks like something went wrong!
      
      /auth/auth0/callback
      
      undefined
      
      posted in NodeBB Plugins
      K
      kailaash
    • RE: First time setup failure.

      @jackzor

      server {
          # listen on ssl, deliver with speedy if possible
          listen 443 ssl spdy;
      
          server_name forum.example.org;
      
          # change these paths!
          ssl_certificate /path/to/cert/bundle.crt;
          ssl_certificate_key /path/to/cert/forum.example.org.key;
      
          # enables all versions of TLS, but not SSLv2 or 3 which are weak and now deprecated.
          ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
      
          # disables all weak ciphers
          ssl_ciphers 'AES128+EECDH:AES128+EDH';
      
          ssl_prefer_server_ciphers on;
      
          location / {
              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;
              proxy_set_header Host $http_host;
              proxy_set_header X-NginX-Proxy true;
      
              proxy_pass http://127.0.0.1:4567;  # no trailing slash
              proxy_redirect off;
      
              # Socket.IO Support
              proxy_http_version 1.1;
              proxy_set_header Upgrade $http_upgrade;
              proxy_set_header Connection "upgrade";
          }
      }
      
      posted in Technical Support
      K
      kailaash
    • RE: First time setup failure.

      Add your certs
      server {
      listen 443;
      listen [::]:443;

      certs here..
      location / {
      

      }
      }

      posted in Technical Support
      K
      kailaash
    • /auth/auth0/callback undefined for auth0 Plugin

      I just installed nodebb-plugin-sso-auth0 and created an app at Auth0. After successfull login at Auth0, when redirected, i get the following error. No restart or build helped.
      Any suggesstions for the prorblem?

      nodebb-plugin-sso-auth0

      Internal Error.
      Oops! Looks like something went wrong!
      
      /auth/auth0/callback
      
      undefined
      
      posted in NodeBB Plugins
      K
      kailaash