Navigation

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Tags
    • Users
    • Groups
    1. Home
    2. paopevil
    P
    • Profile
    • Following 1
    • Followers 0
    • Topics 5
    • Posts 18
    • Best 5
    • Groups 0

    paopevil

    @paopevil

    5
    Reputation
    325
    Profile views
    18
    Posts
    0
    Followers
    1
    Following
    Joined Last Online

    paopevil Follow

    Best posts made by paopevil

    • RE: Regrading change of text of button in nodebb discusiion forum

      You use CSS in ACP to change color this button.

      Example:

      .btn-primary {
          color: color text;
          background-color: color background;
          border-color: color border button;
      
      posted in Technical Support
      P
      paopevil
    • RE: NodeBB v1.9.3 released!

      @arutemu Link. Nodebb supported Nodejs 8. I install Nodejs 8 for NodeBB and Ghost, this is working and look good!

      posted in Announcements
      P
      paopevil
    • RE: Custom registration form

      @flurryfish

      posted in Plugin Requests
      P
      paopevil
    • RE: Nginx for SSL in NodeBB

      Thank you!

      I use SSL so I have to add the following line of code to Nginx:

      proxy_set_header X-Forwarded-Proto $scheme;

      Then restart nginx and Nodebb, and this working.

      posted in General Discussion
      P
      paopevil
    • RE: Can we create [private] forums inside of nodebb forum?

      @venil7 Sorry, because my English is bad, afraid to communicate in English will not understand.

      posted in General Discussion
      P
      paopevil

    Latest posts made by paopevil

    • RE: NodeBB 1.10.0: privilege improvements and more

      NodeBB 1.10.0 support for Nodejs v10?

      posted in Announcements
      P
      paopevil
    • RE: HELLO PEOPLE!

      Chào, phải người Việt Nam không?

      posted in General Discussion
      P
      paopevil
    • RE: NodeBB v1.9.3 released!

      @arutemu Link. Nodebb supported Nodejs 8. I install Nodejs 8 for NodeBB and Ghost, this is working and look good!

      posted in Announcements
      P
      paopevil
    • RE: Can we create [private] forums inside of nodebb forum?

      @venil7 Sorry, because my English is bad, afraid to communicate in English will not understand.

      posted in General Discussion
      P
      paopevil
    • RE: Can we create [private] forums inside of nodebb forum?

      You can speak Vietnamese? If you can, inbox for me in chat.

      posted in General Discussion
      P
      paopevil
    • RE: Error in console.

      You use sudo command. Example: sudo ./nodebb setup or sudo ./nodebb start

      posted in Technical Support
      P
      paopevil
    • RE: Nginx for SSL in NodeBB

      Thank you!

      I use SSL so I have to add the following line of code to Nginx:

      proxy_set_header X-Forwarded-Proto $scheme;

      Then restart nginx and Nodebb, and this working.

      posted in General Discussion
      P
      paopevil
    • RE: Turn off Skin in Persona Theme

      @pichalite Thank you! This working!

      posted in NodeBB Development
      P
      paopevil
    • Nginx for SSL in NodeBB

      I used Lets Encrypt for SSL in NodeBB, and i config nginx below:

      server {
      listen 80;
       server_name d.paopevil.com;
       return 301 https://$host$request_uri;
      }
      server {
       listen 443 ssl;
       server_name d.paopevil.com;
       ssl_certificate /etc/letsencrypt/live/d.paopevil.com/fullchain.pem;
       ssl_certificate_key /etc/letsencrypt/live/d.paopevil.com/privkey.pem;
       location / {
       proxy_set_header X-Real-IP $remote_addr;
       proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
       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";
       }
       location ~ /.well-known {
       allow all;
       }
      }
      

      But I don't login with Admin account. And where did I go wrong?

      posted in General Discussion
      P
      paopevil
    • Turn off Skin in Persona Theme

      How to turn off user choose skin in Persona Theme?

      posted in NodeBB Development
      P
      paopevil