@julian thanks so much.
Status v1.1.0
-
In other words
Add this in your nginx conf (Server block) (After X-Forwarded-For)
proxy_set_header X-Forwarded-Proto $scheme;
if you are using Nginx before NodeBB in all cases?
-
@Jenkler thats a good question. Maybe this is required for NGINX 1.10.1 and up.
-
At the moment i have
location / { proxy_http_version 1.1; proxy_set_header Connection "upgrade"; proxy_pass http://forum-mammagrupper-com:4567; proxy_set_header Host $host; proxy_set_header Upgrade $http_upgrade; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Real-IP $remote_addr; }
correct should be
location / { proxy_http_version 1.1; proxy_set_header Connection "upgrade"; proxy_pass http://forum-mammagrupper-com:4567; proxy_set_header Host $host; proxy_set_header Upgrade $http_upgrade; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Real-IP $remote_addr; }
Right? Is it safe to always have proxy_set_header X-Forwarded-Proto $scheme; set?
If something else looks crappy, feel free to point it out -
emoji could not active after upgrade to 1.1.0
I am upgrading from 1.0.3 to 1.1.0, everything goes well except emoji plugin. Active button is unavailable, I clicked
update files
, but it's processing with endless. -
This is an old bug
- Klick update
- Klick activate
- stop Nodebb and start Nodebb from the console.
If it now works, check the file perms (Nodebb user must have write access to everything). Later on you can restore your perms after updating and enable of emoj
My dev is updated now and no problems yet. Will continue to test ... I be Back !
-
We updated at MangoLassi and all seems well.
-
Works on all my 3 dev sites. Seams good !
-
Are there some notes on what was changed for 1.1?
-
@torn2 yeah, a changelog would be great
-
You can view the list of closed issues on github for a detailed insight.
-
A possible issue. I have created two new sets of topics and posts in
v1.1.0
yet the category analytics do not indicate that. They continue to show zero new posts or topics. Are other people having this issue? -
@rod It may be that the analytics haven't persisted to the database yet. They're stored temporarily in memory and pushed to the database periodically, so if you restart NodeBB in the interim, those analytics may be lost to the ether
-
@julian I will refrain from restarting
v1.1.0
for a few hours now to let the software do what it is supposed to and, yes, I have been stopping and starting 1.1.0 many times as I change and look at things in my dev environment. -
-
@Jenkler I use Redis. And as of my testing today no stats are being collected for new topics or new posts (well, as reported from the analytics tab under
ACP > Manage > Categories > analytics tab
) -
-
Ahh, "ACP > Manage > Categories > analytics tab" works fine for me 2. (MongoDB). I thought you ment the category listings
In other words, still safe to upgrade, wee