Is this a bug? It's a little different from the picture below:
Violing
Posts
-
3.0.0 Bug Report Thread -
Can I install Nodebb 3.0(beta) directly now?@julian About when will it be?
-
Can I install Nodebb 3.0(beta) directly now?@julian said in Can I install Nodebb 3.0(beta) directly now?:
git clone <git or https url> -b bootstrap5
There is no
v3.x
branch yet.When will there be a 3.x branch?
-
Can I install Nodebb 3.0(beta) directly now?git clone -b v3.x ... .. ?
-
Oxide StyleHi @youhosi , I found some problems just now.
There's an extra line in these places.
I have to use two fingers to zoom-in then it can be displayed normally.
-
Oxide StyleGreat theme! Thanks for your work! @youhosi
-
Installing NodeBB in a subfolder of another site@julian said in Installing NodeBB in a subfolder of another site:
I forked your topic so you will not be inadvertently resurrecting an old topic.
In my nginx config, I have the following lines that differ from yours:
location /forum/ {
and
proxy_pass http://127.0.0.1:4567/forum/;
Perhaps altering those lines will help.
config.json should be:
"url": "http://domain.com/forum",
nginx.conf should be:
location ^~ /forum { proxy_pass http://127.0.0.1:4567; }
^~ /forum is important, not /forum