API url: s{server}-{country}.ogame.gameforge.com/api/{endpoint}
players.xml (1 day)
Contain list of all players on the server along with their names and status.
# Quick 'n' dirty script to export snippets from GitLab to local files. Useful if you're | |
# migrating to GitHub or just want to back up your snippets as files. Doesn't catch errors | |
# or anything like that, but what were you expecting for a Gist? :-) Also, this will only | |
# export snippets that are visible to you, so other users' private snippets are excluded. | |
# Tested with GitLab v8.5.1 | |
$username = "username" # Your username goes here | |
$password = "password" # Your password goes here | |
$baseURL = "https://your.gitlab.base.url" # Your GitLab base URL goes here |
Let's say we can a blog hosted as Wordpress.com but visible on our custom domain in subpath due to SEO. WordPress.com supports changing domain/subdomain but not path.
We could either make our own installation, change hosting provier or make nginx proxy with URL rewrites.
This tutorial is inpsired by http://marsbard.github.io/2016-07-30-replace-urls-behind-nginx-reverse-proxy/.