Initial commit of various files

master
LinuxMint4Ever 2020-01-02 12:33:49 +01:00
parent 8dfd2db9c3
commit ce0327e7ef
6 changed files with 24 additions and 0 deletions

9
README.md Normal file
View File

@ -0,0 +1,9 @@
# Git based automatic web deployment system
This repository will be automagically pulled by the web server each time something is pushed by a user. The following files and directories are linked to areas where they can be accessed by the web server:
* `index.html` → `*/common/index.html` (the website as seen by the majority of the users, maybe a login page?)
* `icon.png` → `*/common/icon.png` (self-explanatory)
* `stylesheet.css` → `*/common/stylesheet.css` (self-explanatory)
* `content/` → `*/common/content/` (everything else acessible by the web server)
* `default.html``lostcave.ddnss.de/index.html` (http redirect)
* `admin.php``admin.strassenkind.ip/index.php` (future management page, maybe for services, available sites, users, etc?)
* `strassenkind.php` `strassenkind.ip/index.php` (future status page)

1
admin.php Normal file
View File

@ -0,0 +1 @@
<?php echo ":( Nothing here yet..."; ?>

10
default.html Normal file
View File

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="0;./common/" />
</head>
<body>
<p> Yor browser seems to not support redirects. <br />
Please klick the following link to continue: <a href="./common/"> Go to home page... </a></p>
</body>
</html>

BIN
icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 268 B

1
strassenkind.php Normal file
View File

@ -0,0 +1 @@
<?php echo ":( Nothing here yet..."; ?>

3
stylesheet.css Normal file
View File

@ -0,0 +1,3 @@
/*
Well yes but actually no.
*/