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;
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;
@arutemu Link. Nodebb supported Nodejs 8. I install Nodejs 8 for NodeBB and Ghost, this is working and look good!
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.
@venil7 Sorry, because my English is bad, afraid to communicate in English will not understand.
NodeBB 1.10.0 support for Nodejs v10?
@arutemu Link. Nodebb supported Nodejs 8. I install Nodejs 8 for NodeBB and Ghost, this is working and look good!
@venil7 Sorry, because my English is bad, afraid to communicate in English will not understand.
You can speak Vietnamese? If you can, inbox for me in chat.
You use sudo
command. Example: sudo ./nodebb setup
or sudo ./nodebb start
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.
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?
How to turn off user choose skin in Persona Theme?