Navigation

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

    Posts made by moj

    • Touch Icon doesn't work

      I'm trying to set touch icon. I successfully uploaded the image.
      Screen Shot 2019-02-23 at 12.23.09 AM.png

      However, if I refresh the page, the field becomes empty.
      Screen Shot 2019-02-23 at 12.24.53 AM.png

      And the icon show in "Add to Home Screen" is just a preview of the web page.

      posted in General Discussion
      M
      moj
    • Page Not Found after login

      I am using nodebb with nginx, there is always an Not Found error after login, and login is successful.
      WX20190105-220315@2x.png

      The requested address become http://localhost/forum/http://localhost/forum, after login.

      And there is a 404 error console:
      GET http://localhost/forum/api/http://localhost/forum?_=1546743429781 404 (Not Found)

      In config file of nginx:

      server {
          listen 80;
      
          location /forum {
              proxy_pass http://localhost:4567/forum/;
              proxy_http_version 1.1;
              proxy_set_header Upgrade $http_upgrade;
              proxy_set_header Connection "upgrade";
          }
      }
      

      And in config.json:

      {
          "url": "http://localhost:4567/forum/",
          "secret": "xxxxx-xxxxx-xxxx-xxx-xxxx",
          "database": "mongo",
          "port": "4567",
          "mongo": {
              "host": "127.0.0.1",
              "port": "27017",
          }
      }
      
      posted in General Discussion
      M
      moj