Archived Articles
The following pages contain content imported from the old Surrey LUG website. * Knowledgebase — technical articles and guides * Bring-a-Box Events — archive of past BAB meetings * Pub Events — archive of past pub meetups * General Pages — miscellaneous imported pages * Polls — old community polls * Free Gear — free hardware listings

All pages for the old website have been converted to Ghost articles
The old website is still available and preserved at old.surrey.lug.org.uk. This is to make sure that any information that might be useful to anyone on the internet has been preserved. We have also done some lovely NGINX magic to preserve old direct links where possible so this should "just work".
location / {
proxy_pass http://ghost:2368;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
# Fallback to Drupal if Ghost returns 404
proxy_intercept_errors on;
error_page 404 = @drupal_fallback;
}
location @drupal_fallback {
proxy_pass http://drupal:80;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}