Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse

Darkscribes Community

  1. Home
  2. Uncategorized
  3. I am wanting to use the forum on my pool site. But the forum adddress is going to be https://ktiptokyng.com/forum/

I am wanting to use the forum on my pool site. But the forum adddress is going to be https://ktiptokyng.com/forum/

Scheduled Pinned Locked Moved Uncategorized
37 Posts 3 Posters 0 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • K This user is from outside of this forum
    K This user is from outside of this forum
    [email protected]
    wrote last edited by
    #28

    https://kriptokyng.com/forum

    1 Reply Last reply
    0
    • K This user is from outside of this forum
      K This user is from outside of this forum
      [email protected]
      wrote last edited by
      #29
      2025-04-29T13:51:28.170Z [4567/120129] - error: POST /forum/login?error=csrf-invalid
      invalid csrf token
      2025-04-29T13:53:47.979Z [4567/120129] - error: POST /forum/login?error=csrf-invalid
      invalid csrf token
      2025-04-29T13:54:38.930Z [4567/120129] - error: POST /forum/login
      invalid csrf token
      
      
      julian@community.nodebb.orgJ 1 Reply Last reply
      0
      • K [email protected]
        2025-04-29T13:51:28.170Z [4567/120129] - error: POST /forum/login?error=csrf-invalid
        invalid csrf token
        2025-04-29T13:53:47.979Z [4567/120129] - error: POST /forum/login?error=csrf-invalid
        invalid csrf token
        2025-04-29T13:54:38.930Z [4567/120129] - error: POST /forum/login
        invalid csrf token
        
        
        julian@community.nodebb.orgJ This user is from outside of this forum
        julian@community.nodebb.orgJ This user is from outside of this forum
        [email protected]
        wrote last edited by
        #30

        @kriptokyng what is the value of url in config.json?

        1 Reply Last reply
        0
        • K This user is from outside of this forum
          K This user is from outside of this forum
          [email protected]
          wrote last edited by
          #31

          "url": "https://kriptokyng.com:4567/forum/",

          julian@community.nodebb.orgJ 1 Reply Last reply
          0
          • K [email protected]

            "url": "https://kriptokyng.com:4567/forum/",

            julian@community.nodebb.orgJ This user is from outside of this forum
            julian@community.nodebb.orgJ This user is from outside of this forum
            [email protected]
            wrote last edited by
            #32

            @kriptokyng so that is wrong. Change it to match the proper url used to access the site.

            1 Reply Last reply
            0
            • K This user is from outside of this forum
              K This user is from outside of this forum
              [email protected]
              wrote last edited by
              #33
              server {
              
                  root /var/www/kriptokyn/html;
                  index index.html index.htm index.nginx-debian.html;
              
                  server_name kriptokyng.com ;
              
                  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:7000;  # no trailing slash
                       proxy_redirect off;
                  }
              
                  location /api/ {
                      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:4000/api/;  # no trailing slash
                      proxy_redirect off;
              
                  }
              
                  location /forum {
                      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/forum;  # 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";
              }
              
                  listen [::]:443 ssl ipv6only=on; # managed by Certbot
                  listen 443 ssl; # managed by Certbot
                  ssl_certificate /etc/letsencrypt/live/kriptokyng.com/fullchain.pem; # managed by Certbot
                  ssl_certificate_key /etc/letsencrypt/live/kriptokyng.com/privkey.pem; # managed by Certbot
                  include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
                  ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
              
              
              }
              server {
              if ($host = kriptokyng.com) {
                  return 301 https://$host$request_uri;
              } # managed by Certbot
              
              
                  listen 80;
                  listen [::]:80;
              
                  server_name kriptokyng.com ;
              return 404; # managed by Certbot
              
              
              }
              
              
              julian@community.nodebb.orgJ 1 Reply Last reply
              0
              • K [email protected]
                server {
                
                    root /var/www/kriptokyn/html;
                    index index.html index.htm index.nginx-debian.html;
                
                    server_name kriptokyng.com ;
                
                    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:7000;  # no trailing slash
                         proxy_redirect off;
                    }
                
                    location /api/ {
                        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:4000/api/;  # no trailing slash
                        proxy_redirect off;
                
                    }
                
                    location /forum {
                        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/forum;  # 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";
                }
                
                    listen [::]:443 ssl ipv6only=on; # managed by Certbot
                    listen 443 ssl; # managed by Certbot
                    ssl_certificate /etc/letsencrypt/live/kriptokyng.com/fullchain.pem; # managed by Certbot
                    ssl_certificate_key /etc/letsencrypt/live/kriptokyng.com/privkey.pem; # managed by Certbot
                    include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
                    ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
                
                
                }
                server {
                if ($host = kriptokyng.com) {
                    return 301 https://$host$request_uri;
                } # managed by Certbot
                
                
                    listen 80;
                    listen [::]:80;
                
                    server_name kriptokyng.com ;
                return 404; # managed by Certbot
                
                
                }
                
                
                julian@community.nodebb.orgJ This user is from outside of this forum
                julian@community.nodebb.orgJ This user is from outside of this forum
                [email protected]
                wrote last edited by
                #34

                @kriptokyng fix config.json url. The value is wrong.

                1 Reply Last reply
                0
                • K This user is from outside of this forum
                  K This user is from outside of this forum
                  [email protected]
                  wrote last edited by
                  #35

                  image.png

                  julian@community.nodebb.orgJ 1 Reply Last reply
                  0
                  • K [email protected]

                    image.png

                    julian@community.nodebb.orgJ This user is from outside of this forum
                    julian@community.nodebb.orgJ This user is from outside of this forum
                    [email protected]
                    wrote last edited by
                    #36

                    @kriptokyng stop using :4567 in the url.

                    1 Reply Last reply
                    0
                    Reply
                    • Reply as topic
                    Log in to reply
                    • Oldest to Newest
                    • Newest to Oldest
                    • Most Votes


                    • Login

                    • Don't have an account? Register

                    • Login or register to search.
                    Powered by NodeBB Contributors
                    • First post
                      Last post
                    0
                    • Categories
                    • Recent
                    • Tags
                    • Popular
                    • Users
                    • Groups