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;
}