Tom Henzley has put together a great PGCE Survival Guide book, I know it’s good because I read it and was super happy to see 2 of the services I have been working on over the last 12 months represented =)
Thanks Tom!
Founder, Inventor, Creator
Tom Henzley has put together a great PGCE Survival Guide book, I know it’s good because I read it and was super happy to see 2 of the services I have been working on over the last 12 months represented =)
Thanks Tom!
Paste to /etc/nginx/proxy.conf
# proxy.conf
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_max_body_size 10m;
client_body_buffer_size 128k;
proxy_connect_timeout 90;
proxy_send_timeout 90;
proxy_read_timeout 90;
proxy_buffer_size 4k;
proxy_buffers 4 32k;
proxy_busy_buffers_size 64k;
proxy_temp_file_write_size 64k;
Paste to /etc/nginx/sites-enabled/mysite
server {
listen %Replace_with_your_adapters_IP%:80;
server_name mydomain.com;
access_log /var/log/nginx/mydomain.com.access.log;
error_log /var/log/nginx/mydomain.com.error.log;
location / {
proxy_pass http://localhost:9000/;
include /etc/nginx/proxy.conf;
}
}
Restart nginx
/etc/init.d/nginx restart
This is due to a permission error on the log folder
Quickest fix is:
chown -R etherpad /var/log/etherpad
Try that then do
cd /usr/share/etherpad/bin sudo -u etherpad ./run.sh
I may be slow to catch on and thanks to Jann Webb for pointing this out but I do think TwitterSheep is a great tool for researching someone’s interests in a super easy way.
Love is a word relative to my interests.. Weird!
Classdroid allows you to upload to any wordpress site.
PrimaryBlogger supports this by default.
Either a) Download & install this plugin
or b) Goto Settings, Writing then click Enable XML-RPC (Bottom option of the Writing settings page)