From 5b94af03809a686e9af4572a544deb5ad846c795 Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Fri, 21 Sep 2018 20:31:17 +0200 Subject: [PATCH] Initial commit --- Dockerfile | 11 ++++ default.conf | 17 ++++++ files/googled2a7a9aeee680deb.html | 1 + files/googlehostedservice.html | 1 + files/index.html | 23 ++++++++ files/styles/default.css | 97 +++++++++++++++++++++++++++++++ 6 files changed, 150 insertions(+) create mode 100644 Dockerfile create mode 100644 default.conf create mode 100644 files/googled2a7a9aeee680deb.html create mode 100644 files/googlehostedservice.html create mode 100644 files/index.html create mode 100644 files/styles/default.css diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..2755bdb --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM nginx +MAINTAINER Joakim Olsson + +ADD files/*.html /usr/share/nginx/html/ + +ADD files/styles/*.css /usr/share/nginx/html/styles/ + +ADD default.conf /etc/nginx/conf.d/default.conf + +ENV ALLOW_HUP true +ENV ROTATE_LOGS true diff --git a/default.conf b/default.conf new file mode 100644 index 0000000..42f5490 --- /dev/null +++ b/default.conf @@ -0,0 +1,17 @@ +server { + listen 80; + server_name localhost; + + access_log /log/access.log combined; + error_log /log/error.log error; + + location / { + root /usr/share/nginx/html; + index index.html index.htm; + } + + error_page 500 502 503 504 /50x.html; + location = /50x.html { + root /usr/share/nginx/html; + } +} diff --git a/files/googled2a7a9aeee680deb.html b/files/googled2a7a9aeee680deb.html new file mode 100644 index 0000000..8a9ec39 --- /dev/null +++ b/files/googled2a7a9aeee680deb.html @@ -0,0 +1 @@ +google-site-verification: googled2a7a9aeee680deb.html \ No newline at end of file diff --git a/files/googlehostedservice.html b/files/googlehostedservice.html new file mode 100644 index 0000000..11f0162 --- /dev/null +++ b/files/googlehostedservice.html @@ -0,0 +1 @@ +googleffffffffe33a2cf0 diff --git a/files/index.html b/files/index.html new file mode 100644 index 0000000..c1c8f1e --- /dev/null +++ b/files/index.html @@ -0,0 +1,23 @@ + + +Unbound Software Development + + + +Unbound
+Software Development
+
+Denna site är under uppbyggnad.

+Joakim Olsson + + + + + diff --git a/files/styles/default.css b/files/styles/default.css new file mode 100644 index 0000000..0091ed1 --- /dev/null +++ b/files/styles/default.css @@ -0,0 +1,97 @@ +body { + background: #203050; + color: #D0D0D0; +} + +a:link { + color: #D0D0D0; +} + +a:visited { + color: #F0C000; +} + +div#logo { + position: absolute; + top: 10px; + right: 10px; +} + +.title { + color: #D0D0D0; + font-family: impact; + font-size: 40px; + text-align: center; +} + +.subtitle { + color: #D0D0D0; + font-family: impact; + font-size: 15px; + text-align: center; +} + +ul#nav { + list-style: none; + margin-top: 10px; + margin-left: 0px; + padding: 0px; +} + +ul#nav li { + float: left; + width: 80px; + height: 30px; + /*border-left: 2px solid #D0D0D0; + border-top: 2px solid #D0D0D0; + border-right: 2px solid #A0A0A0; + border-bottom: 0px; */ + background-color: #B8B8B8; + color: #000000; + font-family: verdana, sans; + font-size: 0.8em; + font-weight: 700; + text-align: center; + text-vertical-align: middle; + margin: 1px; + /*border-radius: 4px; + -moz-border-radius: 4px; */ +} + +ul#nav li.selected { + border-left: 2px solid #D00000; + border-top: 2px solid #D00000; + border-right: 2px solid #A00000; + background-color: #B80000; + color: #FFFFFF; +} + +.rtop, .rbottom { + display:block; + background-color: #203050; +} + +.rtop *, .rbottom * { + display: block; + background-color: #B8B8B8; + height: 1px; + overflow: hidden +} + +.r1 { + margin: 0 5px; +} + +.r2 { + margin: 0 3px; +} + +.r3 { + margin: 0 2px; +} + +.r4 { + margin: 0 1px; + height: 2px; +} +