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
    #5

    it keeps say "As a new user, you can only post once every 300 second(s) until you have earned 1 reputation - please wait before posting again"

    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
      #6

      i sent you a copy to a private message

      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
        #7
        server {
        
                root /var/www/kriptokyng/html;
                index index.html index.htm index.nginx-debian.html;
        
                server_name kriptokyng.com;
        
        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
        
        
                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;
                        }
                location /api/ {
                proxy_pass http://127.0.0.1:4000/api/;
                        }
                location /forum/ {
                proxy_pass http://127.0.0.1:4567/forum/;
        
                # Socket.IO Support
                proxy_http_version 1.1;
                proxy_set_header Upgrade $http_upgrade;
                proxy_set_header Connection "upgrade";
        }
        }
        server {
            if ($host = kriptokyng.com) {
                return 301 https://$host$request_uri;
            } # managed by Certbot
        
        
                listen 80;
                listen [::]:80;
        
        }
        
        1 Reply Last reply
        0
        • baris@community.nodebb.orgB This user is from outside of this forum
          baris@community.nodebb.orgB This user is from outside of this forum
          [email protected]
          wrote last edited by
          #8

          https://docs.nodebb.org/configuring/proxies/nginx/#basic-with-subfolder-install

          Your nginx config seems 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
            #9

            it does the same thing, not change.

            image.png

            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
              #10
              server {
              
                      root /var/www/kriptokyng/html;
                      index index.html index.htm index.nginx-debian.html;
              
                      server_name kriptokyng.com;
              
              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
              
              
                      location / {
                      proxy_pass http://127.0.0.1:7000;
                              }
                      location /api/ {
                      proxy_pass http://127.0.0.1:4000/api/;
                              }
                      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;
                      proxy_redirect off;
              
                      # Socket.IO Support
                      proxy_http_version 1.1;
                      proxy_set_header Upgrade $http_upgrade;
                      proxy_set_header Connection "upgrade";
                      }
              }
              server {
                  if ($host = kriptokyng.com) {
                      return 301 https://$host$request_uri;
                  } # managed by Certbot
              
              
                      listen 80;
                      listen [::]:80;
              
              }
              
              
              ```
              1 Reply Last reply
              0
              • baris@community.nodebb.orgB This user is from outside of this forum
                baris@community.nodebb.orgB This user is from outside of this forum
                [email protected]
                wrote last edited by
                #11

                Did you also set the url property in config.json to https://ktiptokyng.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
                  #12

                  yes i did

                  1 Reply Last reply
                  0
                  • baris@community.nodebb.orgB This user is from outside of this forum
                    baris@community.nodebb.orgB This user is from outside of this forum
                    [email protected]
                    wrote last edited by
                    #13

                    It doesn't look like it is set correctly. Loading your forum requests files from a wrong url. Check the network tab.

                    image.png

                    8f3d01c3-37e2-40b6-bd80-37a6c9c5de2a-image.png.

                    Make sure to change the url property to https://kriptokyng.com/forum in config.json and rebuilt restart nodebb/nginx.

                    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
                      #14

                      gettig better, but still not right.

                      image.png

                      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
                        #15

                        image.png

                        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
                          #16

                          And it running very slow

                          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
                            #17

                            image.png

                            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
                              #18

                              runs fine on 192.168.1.189:4567/forum. But doesn't on ssl 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
                                #19

                                image.png

                                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
                                  #20

                                  image.png

                                  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
                                    #21

                                    is this thing much faster running on redis?

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

                                      is this thing much faster running on redis?

                                      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
                                      #22

                                      @kriptokyng if it's perceivably slow then no, something is wrong and it's not the database.

                                      1 Reply Last reply
                                      0
                                      • 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
                                        #23

                                        @kriptokyng fwiw that link loads fine for me

                                        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
                                          #24

                                          image.png

                                          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