diff options
| author | 2018-06-18 22:56:58 +0200 | |
|---|---|---|
| committer | 2018-06-18 22:56:58 +0200 | |
| commit | 767ac77ee26316b183955c8bfd132df8ff11dfe1 (patch) | |
| tree | f4c5382f86158da58e44fe0e35ab325780275343 /data | |
| parent | 44ee5ec70cfac8860dc5c2af9cc5e7518b147d07 (diff) | |
[#1942] Track missing index files (#1943)
These files must exist for security reasons: they hide contents of their
directories if the webserver isn't well configured and redirect to the
home page.
They were automatically created by `./cli/prepare.php` script so it was
annoying to have them in the working tree. Also, the files created by
the script were empty.
Diffstat (limited to 'data')
| -rw-r--r-- | data/PubSubHubbub/feeds/index.html | 13 | ||||
| -rw-r--r-- | data/PubSubHubbub/index.html | 13 | ||||
| -rw-r--r-- | data/PubSubHubbub/keys/index.html | 13 | ||||
| -rw-r--r-- | data/users/_/index.html | 13 |
4 files changed, 52 insertions, 0 deletions
diff --git a/data/PubSubHubbub/feeds/index.html b/data/PubSubHubbub/feeds/index.html new file mode 100644 index 000000000..85faaa37e --- /dev/null +++ b/data/PubSubHubbub/feeds/index.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-GB" lang="en-GB"> +<head> +<meta charset="UTF-8" /> +<meta http-equiv="Refresh" content="0; url=/" /> +<title>Redirection</title> +<meta name="robots" content="noindex" /> +</head> + +<body> +<p><a href="/">Redirection</a></p> +</body> +</html> diff --git a/data/PubSubHubbub/index.html b/data/PubSubHubbub/index.html new file mode 100644 index 000000000..85faaa37e --- /dev/null +++ b/data/PubSubHubbub/index.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-GB" lang="en-GB"> +<head> +<meta charset="UTF-8" /> +<meta http-equiv="Refresh" content="0; url=/" /> +<title>Redirection</title> +<meta name="robots" content="noindex" /> +</head> + +<body> +<p><a href="/">Redirection</a></p> +</body> +</html> diff --git a/data/PubSubHubbub/keys/index.html b/data/PubSubHubbub/keys/index.html new file mode 100644 index 000000000..85faaa37e --- /dev/null +++ b/data/PubSubHubbub/keys/index.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-GB" lang="en-GB"> +<head> +<meta charset="UTF-8" /> +<meta http-equiv="Refresh" content="0; url=/" /> +<title>Redirection</title> +<meta name="robots" content="noindex" /> +</head> + +<body> +<p><a href="/">Redirection</a></p> +</body> +</html> diff --git a/data/users/_/index.html b/data/users/_/index.html new file mode 100644 index 000000000..85faaa37e --- /dev/null +++ b/data/users/_/index.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-GB" lang="en-GB"> +<head> +<meta charset="UTF-8" /> +<meta http-equiv="Refresh" content="0; url=/" /> +<title>Redirection</title> +<meta name="robots" content="noindex" /> +</head> + +<body> +<p><a href="/">Redirection</a></p> +</body> +</html> |
