I'm using Persona theme and try to find any solution how to make footer sticky to the bottom.
any ideas?
Tom Riddleff
Posts
-
Sticky footer -
openshift deploymenthi guys!
I'm getting stuck with the launching nodebb on openshift. on the final stage when I do start the app - I get the error listening EACCES, despite I strictly follow the steps.
has anyone experience same issue?
could you please advice how can I solve it? -
[SOLVED]socket.io - websocket custom portThank you for your note, @julian
I acctually found what I were need.
Adding an appropriate string to config.json - solved my problem."socket.io": { "address": "http://myforum.com:8000" }
Thus websocket will use port 8000 on establishing the connection.
One of openshift's bottleneck, that held me up.
Done -
openshift deployment@José-Ángel-Rey-Liñares Hi!
First try to ssh your app on openshift and type:redis-cli $REDIS_CLI
If redis cartridge installed properly - you have to get in to redis console.
Then. Compose you json.config file this way(replace appropriate data):{
"url": "http://nodebb-myapp.rhcloud.com",
"port": "8080",
"secret": "xxxxxxxxxxxxxxxXXXXXXXXXX",
"database": "redis",
"redis": {
"host": "127.xx.xxx.xxx",
"port": "1xxxx",
"password": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"database": "0"
}
}
And upload it to openshift.You can get the redis object data for your config with the following command:
echo $OPENSHIFT_REDIS_HOST && echo $OPENSHIFT_REDIS_PORT && echo $REDIS_PASSWORD
Then try to 'nodebb app.js --setup' your application on the server. It'll fetch all the needed data from the config.
-
openshift deployment@José-Ángel-Rey-Liñares Ok. Poke me if any.