Rewards plugin would probably work well.
How to force HTTP to HTTPS?
-
Hi everyone, I have just begin to learn about Nodebb and it is a great forum. I need to run (force) all http connections to https, how could I do that that please? E.g. if I type
Website Hosting - Mysite.com
For affordable website hosting packages, go to MySite.com. You'll find complete and reliable website hosting with a range of prices and options.
(mysite.com)
-
@julian Hey, thanks @julian for your reply. Currently I configured the server block (btw I am using Nginx v1.6.2 to proxy the port number in the URL) in a way to handle both HTTP and HTTPS protocols:
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
listen 443 ssl;... location to ssl certificate and key + SSL specific config;
... server root info;
server_name mysite.com www.mysite.com;
location / {
# proxy, proxy pass and socket.io info to handle the port and use mysite.com instead of mysite.com:4567 (same as Nodebb user manual)
}
}Shall I add a new server block to force reload HTTPS instead of HTTP connections or just add the return 301 command to current server block? Thanks