1
0

Chall added

This commit is contained in:
2019-08-09 01:34:07 +02:00
parent 49bf0da65f
commit 2d62f7079b
61 changed files with 1489 additions and 9 deletions

61
nginx/Dockerfile Normal file
View File

@ -0,0 +1,61 @@
FROM debian:wheezy
MAINTAINER Aymeric Sorek "aymericsorek@protonmail.com"
# Environment
ENV LANG C.UTF-8
ENV LANGUAGE C.UTF-8
ENV LC_ALL C.UTF-8
# Change sources.list
RUN echo "deb http://archive.debian.org/debian wheezy main" > /etc/apt/sources.list
# Update and upgrade
RUN apt-get update
RUN apt-get dist-upgrade -y
# Install packages
RUN apt-get install -y wget
RUN apt-get install -y nginx
RUN apt-get install -y curl
# Install vulnerable versions from snapshot archive
#RUN wget http://snapshot.debian.org/archive/debian/20130319T033933Z/pool/main/o/openssl/libssl1.0.0_1.0.1e-2_amd64.deb -O /tmp/libssl1.0.0_1.0.1e-2_amd64.deb
#RUN wget http://snapshot.debian.org/archive/debian/20130319T033933Z/pool/main/o/openssl/openssl_1.0.1e-2_amd64.deb -O /tmp/openssl_1.0.1e-2_amd64.deb
COPY libssl1.0.0_1.0.1e-2_amd64.deb /tmp/libssl1.0.0_1.0.1e-2_amd64.deb
COPY openssl_1.0.1e-2_amd64.deb /tmp/openssl_1.0.1e-2_amd64.deb
RUN dpkg -i /tmp/libssl1.0.0_1.0.1e-2_amd64.deb
RUN dpkg -i /tmp/openssl_1.0.1e-2_amd64.deb
# Define the ENV variable
ENV nginx_vhost /etc/nginx/sites-available/default
ENV nginx_conf /etc/nginx/nginx.conf
# Generation certificate and key
RUN mkdir /etc/nginx/ssl
RUN openssl req -x509 -nodes -days 365 -sha256 -newkey rsa:2048 -keyout /etc/nginx/ssl/nginx.key -out /etc/nginx/ssl/nginx.crt -subj "/C=FR/ST=You_re_not_supposed_to_be_here/L=You_re_not_supposed_to_be_here/O=You_re_not_supposed_to_be_here/CN=10.1.0.1"
RUN openssl dhparam -out /etc/nginx/dhparam.pem 2048
# Conf nginx
COPY default ${nginx_vhost}
COPY nginx.conf /etc/nginx/nginx.conf
RUN rm -rf /var/www/html/*
RUN mkdir -p /var/www/html
RUN chown -R www-data:www-data /var/www/html
# Volume
COPY webroot /var/www/html
# Test nginx conf
RUN nginx -t
# Clean up
RUN apt-get autoremove
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
# Scripts
COPY start.sh /start.sh
CMD ["./start.sh"]
# Expose web ports
EXPOSE 443

15
nginx/default Normal file
View File

@ -0,0 +1,15 @@
server {
listen 443 ssl;
server_name _;
root /var/www/html;
index index.html;
location / {
try_files $uri $uri/ =404;
}
ssl_certificate /etc/nginx/ssl/nginx.crt;
ssl_certificate_key /etc/nginx/ssl/nginx.key;
}

Binary file not shown.

74
nginx/nginx.conf Normal file
View File

@ -0,0 +1,74 @@
user www-data;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;
events {
worker_connections 768;
# multi_accept on;
}
http {
##
# Basic Settings
##
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
server_tokens off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
# Sub domain too long
server_names_hash_bucket_size 128;
##
# SSL Settings
##
# Diffie-Hellman parameter for DHE cipher suites
ssl_dhparam /etc/nginx/dhparam.pem;
ssl_ecdh_curve secp384r1;
# Protocols
ssl_protocols TLSv1.2;
ssl_prefer_server_ciphers on;
#ssl_ciphers EECDH+CHACHA20:ECDHE-RSA-AES256-GCM-SHA512:DHE-RSA-AES256-GCM-SHA512:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-SHA384;
ssl_ciphers "EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH:ECDHE-RSA-AES128-SHA";
##
# Headers
##
add_header X-Frame-Options DENY;
add_header X-Content-Type-Options nosniff;
add_header X-XSS-Protection "1; mode=block";
##
# Logging Settings
##
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
##
# Gzip Settings
##
gzip off; # To avoid BREACH Attack
gzip_disable "msie6";
##
# Virtual Host Configs
##
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}

Binary file not shown.

9
nginx/start.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/bash
nginx -g 'daemon off;'&
while true
do
curl -k -X GET https://localhost -d "IMTLD{I_Cl34n3d_Y0ur_D1rtY_H34rT_Sw33tY}" -A "Extractor" -H 'Cache-Control: no-cache'
sleep 2
done

72
nginx/webroot/about.html Normal file
View File

@ -0,0 +1,72 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" lang="cs">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Be my Valentine</title>
<link rel="stylesheet" media="screen,projection" type="text/css" href="css/main.css" />
<link rel="stylesheet" media="print" type="text/css" href="css/print.css" />
<link rel="stylesheet" media="aural" type="text/css" href="css/aural.css" />
</head>
<body id="www-url-cz">
<div id="main" class="box">
<div id="header">
<h1 id="logo"><a href="index.html">Be my <strong>Valentine</strong><span></span></a></h1>
<hr class="noscreen" />
</div>
<div id="tabs" class="noprint">
<h3 class="noscreen">Navigation</h3>
<ul class="box">
<li><a href="index.html">Home<span class="tab-l"></span><span class="tab-r"></span></a></li>
<li><a href="blog.html">Weblog<span class="tab-l"></span><span class="tab-r"></span></a></li>
<li id="active"><a href="about.html">About Me<span class="tab-l"></span><span class="tab-r"></span></a></li>
<li><a href="photos.html">Photos<span class="tab-l"></span><span class="tab-r"></span></a></li>
</ul>
<hr class="noscreen" />
</div>
<div id="page" class="box">
<div id="page-in" class="box">
<div id="strip" class="box noprint">
<hr class="noscreen" />
<p id="breadcrumbs">You are here: <a href="./index.html">Home</a> &gt; <strong>About Me</strong></p>
<hr class="noscreen" />
</div>
<div id="content">
<p><img src="img/profil.jpg" id="me" alt="Yeah, it´s me..." /> <br> <strong>myheart_77</strong><br />
Age: 14<br />
In the sky<br />
<a href="https://myspace.com/dirty_heart_0787">Profile on MySpace</a></p>
<p>I am myheart_77, I was left and I am desperate to find a valentine</p>
<hr class="noscreen" />
</div>
<div id="col" class="noprint">
<div id="col-in">
<h3><span><a href="about.html">About Me</a></span></h3>
<div id="about-me">
<p><img src="img/profil.jpg" id="me" alt="Yeah, it´s me..." /> <strong>myheart_77</strong><br />
Age: 14<br />
In the sky<br />
<a href="https://myspace.com/dirty_heart_0787">Profile on MySpace</a></p>
</div>
<hr class="noscreen" />
<h3><span>Links</span></h3>
<ul id="links">
<li><a href="https://myspace.com/dirty_heart_0787" target="_blank">My MySpace</a></li>
<li><a href="https://www.youtube.com/watch?v=UAWcs5H-qgQ&list=PLzzwfO_D01M4nNqJKR828zz6r2wGikC5a" target="_blank">Favorite songs</a></li>
<li><a href="https://open.spotify.com/playlist/53NEfJTEt86ytgk5SaqMjZ" target="_blank">Songs #2</a></li>
</ul>
<hr class="noscreen" />
</div>
</div>
</div>
</div>
<div id="footer">
<div id="top" class="noprint">
<p><span class="noscreen">Back on top</span> <a href="#header" title="Back on top ^">^<span></span></a></p>
</div>
<hr class="noscreen" />
<p id="createdby">created by <a href="http://www.nuvio.cz">Nuvio | Webdesign</a> </p>
<p id="copyright">&copy; 2007 <a href="about.html">myheart_77</a></p>
</div>
</div>
</body>
</html>

117
nginx/webroot/blog.html Normal file
View File

@ -0,0 +1,117 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" lang="cs">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Be my Valentine</title>
<link rel="stylesheet" media="screen,projection" type="text/css" href="css/main.css" />
<link rel="stylesheet" media="print" type="text/css" href="css/print.css" />
<link rel="stylesheet" media="aural" type="text/css" href="css/aural.css" />
</head>
<body id="www-url-cz">
<div id="main" class="box">
<div id="header">
<h1 id="logo"><a href="index.html">Be my <strong>Valentine</strong><span></span></a></h1>
<hr class="noscreen" />
</div>
<div id="tabs" class="noprint">
<h3 class="noscreen">Navigation</h3>
<ul class="box">
<li><a href="index.html">Home<span class="tab-l"></span><span class="tab-r"></span></a></li>
<li id="active"><a href="blog.html">Weblog<span class="tab-l"></span><span class="tab-r"></span></a></li>
<li><a href="about.html">About Me<span class="tab-l"></span><span class="tab-r"></span></a></li>
<li><a href="photos.html">Photos<span class="tab-l"></span><span class="tab-r"></span></a></li>
</ul>
<hr class="noscreen" />
</div>
<div id="page" class="box">
<div id="page-in" class="box">
<div id="strip" class="box noprint">
<hr class="noscreen" />
<p id="breadcrumbs">You are here: <a href="./index.html">Home</a> &gt; <strong>Blog</strong></p>
<hr class="noscreen" />
</div>
<div id="content">
<div class="article">
<h2><span>Valentine not alone</span></h2>
<p class="info noprint"> <span class="date">2008-01-30 @ 01:01</span><span class="noscreen">,</span> <span class="cat">motivation, valentine</span><span class="noscreen">,</span> <span class="user">myheart_77</span><span class="noscreen">,</span> </p>
<p> <img src="img/you.gif" alt="you are"> </p>
<p>Today, I am taking control of myself. I decided to give my soul for someone to be my valentine.</p>
</div>
<hr class="noscreen" />
<div class="article">
<h2><span>What is love?</span></h2>
<p class="info noprint"> <span class="date">2007-12-28 @ 14:05</span><span class="noscreen">,</span> <span class="cat">what, is, love, noob</span><span class="noscreen">,</span> <span class="user">myheart_77</span><span class="noscreen">,</span> </p>
<p> <img src="img/ignore.jpg" width="500px" alt="Ignore Me"> </p>
<p>"IT IS SAID THAT LOVE IS BLIND ."</p>
<p>BUT I will say Love ---- is the most beautiful word in this world.It demands to give,to sacrifice,to respect,to devote,to dedicate ,to believe and live life for loved ones.
This is such a river in which every one wants to fall,to sink,and to stay till the end of life.
While Attraction leads you to touch and obtain at any cost and any rate the thing which attracts you.In attraction we forget our limitations,our boundaries ,our capacities and to differentiate between right and wrong.So I will say attraction is blind.</p>
<p>DUE TO ATTRACTION THE RELAIONSHIP BREAKUPS LIKE MIRROR GLASS .AND IN BROKEN MIRROR OUR BEAUTIFUL FACE LOOKES UGLY.</p>
<p>SO before saying you are in love consider over above points.</p>
<p>More about love and how to maintain it? I shall explain in my next Blog.Till then consider ,think and think and think. And have healthy relationship.</p>
<p>Let me think also so that I could give you the best solution.</p>
</div>
<hr class="noscreen" />
<div class="article">
<h2><span>My best break-up quotes</span></h2>
<p class="info noprint"> <span class="date">2007-12-27 @ 06:58</span><span class="noscreen">,</span> <span class="cat">quotes, break-up, memories</span> <span class="user">myheart_77</span><span class="noscreen">,</span> </p>
<p>Here is a compilation of the best quotes I could find on the internet to recover from my break-up.</p>
<p class="quote">"You never tried to understand me and my feelings."</p>
<p class="quote">"You have broken my heart into pieces but I still love you."</p>
<p class="quote">"You never tried to be my strength. You made me feel like a loser every moment."</p>
<p class="quote">"Right now I want to run as far as I can from you."</p>
<p class="quote">"I know our relationship is over but still you mean everything for me."</p>
<p class="quote">"The person changes easily but its not easy to change the memories spent together."</p>
<p class="quote">"I cant stop dreaming about the day when we both will be together again…"</p>
<p class="quote">"I dont think that there is something left to comment about this relationship. So better to separate our ways rather than arguing with each other."</p>
</div>
<hr class="noscreen" />
<div class="article">
<h2><span>Come back to me</span></h2>
<p class="info noprint"> <span class="date">2007-12-26 @ 18:31</span><span class="noscreen">,</span> <span class="cat">break-up, sad</span><span class="noscreen">,</span> <span class="user">myheart_77</span><span class="noscreen">,</span> </p>
<p> <img src="img/leave.gif" alt="Ignore Me"> </p>
<p>I'm all alone. Nobody wants me. They still leave me because I am supposedly too jealous. Excuse me for being affectionate and giving you love.</p>
<p>This is how I testify of my love you must accept it then that's all.</p>
</div>
<hr class="noscreen" />
</div>
<div id="col" class="noprint">
<div id="col-in">
<h3><span><a href="about.html">About Me</a></span></h3>
<div id="about-me">
<p><img src="img/profil.jpg" id="me" alt="Yeah, it´s me..." /> <strong>myheart_77</strong><br />
Age: 14<br />
In the sky<br />
<a href="https://myspace.com/dirty_heart_0787">Profile on MySpace</a></p>
</div>
<hr class="noscreen" />
<h3><span>Links</span></h3>
<ul id="links">
<li><a href="https://myspace.com/dirty_heart_0787" target="_blank">My MySpace</a></li>
<li><a href="https://www.youtube.com/watch?v=UAWcs5H-qgQ&list=PLzzwfO_D01M4nNqJKR828zz6r2wGikC5a" target="_blank">Favorite songs</a></li>
<li><a href="https://open.spotify.com/playlist/53NEfJTEt86ytgk5SaqMjZ" target="_blank">Songs #2</a></li>
</ul>
<hr class="noscreen" />
</div>
</div>
</div>
</div>
<div id="footer">
<div id="top" class="noprint">
<p><span class="noscreen">Back on top</span> <a href="#header" title="Back on top ^">^<span></span></a></p>
</div>
<hr class="noscreen" />
<p id="createdby">created by <a href="http://www.nuvio.cz">Nuvio | Webdesign</a> </p>
<p id="copyright">&copy; 2007 <a href="about.html">myheart_77</a></p>
</div>
</div>
</body>
</html>

View File

@ -0,0 +1,20 @@
/*
Project: CrystalX
URL: http://www.nuvio.cz
Output device: aural
Author: Vit Dlouhy (vit.dlouhy@nuvio.cz); Nuvio (www.nuvio.cz)
Last revision: 2006-12-05, 12:00 GMT+1
*/
body {voice-family:paul,male; volume:loud; speech-rate:slow; richness:90; stress:20;}
h1, h2, h3, h4, h5 {cue-before:url("ping.au");}
p, table {pause:50ms;}
em, q, cite, blockquote {pitch:medium; pitch-range:60; stress:60; richness:50;}
strong {pitch:medium; pitch-range:60; stress:90; richness:90;}
pre, code {speak-punctuation:code;}

210
nginx/webroot/css/main.css Normal file
View File

@ -0,0 +1,210 @@
/*
Project: RubyX
http://www.kendahlin.com/
Based entirely on CrystalX by original author listed below (only the color scheme was changed):
URL: http://www.nuvio.cz
Output device: screen, projection
Author: Vit Dlouhy (vit.dlouhy@nuvio.cz); Nuvio (www.nuvio.cz)
Last revision: 2006-12-05, 12:00 GMT+1
Structure:
display | position | float | overflow | width | height | border | margin | padding | background | align | font
*/
* {min-height:1px;}
body {border:0; margin:0; padding:0; background:#fff1f3 url("../design/bg.gif") 0 0 repeat-x; font:70%/160% "verdana",sans-serif; color:#7f000b; _text-align:center;}
a {color:#7f000b;}
a:hover {color:#ff2740;}
.quote {font-style: italic;}
p {border:0; margin:15px 0; padding:0;}
div {display:block; border:0; margin:0; padding:0;}
h1, h2, h3, h4, h5 {border:0; margin:15px 0 10px 0; padding:0; font-weight:bold;}
h1 {font-size:260%; line-height:100%; font-family:"georgia",serif; font-weight:normal;}
h2 {font-size:180%; line-height:100%; font-family:"georgia",serif; font-weight:normal;}
h3 {font-size:120%; line-height:100%; font-weight:bold;}
h4 {font-size:120%;}
h5 {font-size:100%;}
table {display:table; border-collapse:collapse; margin:15px 0; padding:0; border:1px solid #ffaec0; font-size:100%;}
tr {display:table-row;}
th, td {display: table-cell; border:1px solid #ffaec0; margin:0; padding:5px; vertical-align:top; text-align:left;}
th {background:#ffe5e9; text-align:center; color:#7f000b; font-weight:bold;}
ul, ol {display:block; border:0; margin:15px 0 15px 40px; padding:0;}
ol {list-style-type:decimal;}
li {display:list-item; border:0; margin:0; padding:0; _height:1px;}
ul ul, ul ol, ol ol, ol ul {margin: 0 0 0 20px;}
dl {border:0; margin:15px 0; padding:0;}
dt {border:0; margin:0; padding:0; font-weight:bold;}
dd {border:0; margin:0 0 0 30px; padding:0;}
form {border:0; margin:0; padding:0;}
fieldset {border:1px solid #ccc; margin:15px 0; padding:10px;}
legend {margin-left:10px; font-size:100%; font-weight:bold; color:#008;}
hr {display:block; height:1px; margin:10px 0; padding:0; background:#CCC; border:0 solid #CCC; color:#CCC;}
a, img, span {border:0; margin:0; padding:0;}
abbr, acronym {border-bottom:1px dotted #CCC; cursor:help;}
del, .through {text-decoration:line-through;}
strong, .strong {font-weight:bold;}
cite, em, q, var {font-style:italic;}
code, kbd, samp {font-family:monospace; font-size:110%;}
/* Floating */
.f-left {float:left;}
.f-right {float:right;}
/* Text align */
.t-left {text-align:left;}
.t-center {text-align:center;}
.t-right {text-align:right;}
.va-middle {vertical-align:middle;}
.clear {clear:both;}
.box {min-height:1px; _height:1px;}
.box:after {content:"."; display:block; line-height:0px; font-size:0px; visibility:hidden; clear:both;}
.nom {margin:0;}
.noscreen {display:none;}
/* -----------------...........--------------------------------------------------------------------------------------- */
#main {width:770px; margin:50px auto 0 auto; _text-align:left;}
/* Header */
#header {position:relative; width:770px; height:100px; margin:0; padding:0; background:#233C9B url("../design/header.jpg") 0 0 no-repeat; color:#FFF;}
/* Header - logo */
#header #logo {position:absolute; top:35px; left:35px; margin:0;}
#header #logo a {color:#FFF;}
#header #logo a:hover {color:#ff99b2; text-decoration:underline;}
/* Header - Search */
#header #search {position:absolute; top:35px; right:20px;}
#header #search form {position:relative;}
#header #search #search-input-out {position:absolute; top:0; right:45px; width:155px; height:28px; margin:0; padding:0; border:0; background:url("../design/search_input.gif") 0 0 no-repeat; font:bold 90%/100% "verdana",sans-serif; color:#7f000b;}
#header #search #search-input {width:140px; margin:5px 8px; padding:3px 0; border:0; background:#FFF; font:bold 100%/100% "verdana",sans-serif; color:#7f000b;}
#header #search #search-submit {position:absolute; top:0; right:0px;}
#header #search fieldset {margin:0; padding:0; border:0;}
#header #search fieldset {width:200px;}
#header #search legend {display:none;}
/* Main menu (tabs) */
#tabs {background:#7f000b; margin:0 5px; padding:10px 0 0 0; _height:1px;}
#tabs ul {margin:0 10px; padding:0; list-style:none;}
#tabs ul li {margin:0 5px 0 0; padding:0; float:left;}
#tabs ul li a {display:block; position:relative; padding:7px 15px; border:0; background:url("../design/tab_link.gif") 0 0 repeat-x; color:#ff99b2; font-weight:bold; text-decoration:none; cursor:pointer;}
/* Main menu (tabs - link) */
#tabs ul li a span.tab-l, #tabs ul li a:hover span.tab-l {position:absolute; top:0; left:0; _left:-15px; width:8px; height:8px; background:url("../design/tab_link_l.gif") 0 0 no-repeat;}
#tabs ul li a span.tab-r, #tabs ul li a:hover span.tab-r {position:absolute; top:0; right:0; _right:-1px; width:8px; height:8px; background:url("../design/tab_link_r.gif") 100% 0 no-repeat;}
/* Main menu (tabs - hover) */
#tabs ul li a:hover {background:url("../design/tab_hover.gif") 0 0 repeat-x; color:#FFF;}
#tabs ul li a:hover span.tab-l {background:url("../design/tab_hover_l.gif") 0 0 no-repeat;}
#tabs ul li a:hover span.tab-r {background:url("../design/tab_hover_r.gif") 100% 0 no-repeat;}
/* Main menu (tabs - active) */
#tabs ul li#active a {background:#FFF; color:#FF0000;}
#tabs ul li#active a span.tab-l {position:absolute; top:0; left:0; _left:-15px; width:8px; height:8px; background:url("../design/tab_active_l.gif") 0 0 no-repeat;}
#tabs ul li#active a span.tab-r {position:absolute; top:0; right:0; width:8px; height:8px; background:url("../design/tab_active_r.gif") 100% 0 no-repeat;}
/* Page (2 columns) */
#page {width:770px; min-height:1px; background:#FFF url("../design/bg_page.gif") 0 0 repeat-y; _height:1px;}
#page-in {min-height:1px; padding:10px 0; background:url("../design/bg_page_in.jpg") 0 0 no-repeat; _height:1px;}
/* Strip */
#strip {position:relative; clear:both; padding:3px 20px 10px 20px; color:#ff335e;}
#strip p {margin:0;}
#strip a {color:#ff335e;}
#strip a:hover {color:#7f000b;}
/* Strip - breadcrumbs */
#strip #breadcrumbs {width:520px; margin:0; padding:0;}
/* Strip - RSS */
#strip #rss {float:right; width:175px; _width:200px; margin:0; padding-left:25px; background:url("../design/ico_rss.gif") 0 50% no-repeat}
/* Content */
#content {float:left; width:530px; _width:550px; margin:0; padding:0 0 0 20px;}
/* Content - article */
#content .article {clear:both; margin:0; padding:20px; background:url("../design/content_article_bg.jpg") 0 0 no-repeat;}
#content .article h2 {margin:0 -20px; padding:10px; background:#ffdce1 url("../design/content_title_bg.gif") 0 0 repeat-y; color:#7f000b;}
#content .article h2 span {background:url("../design/ico_list.gif") 0 50% no-repeat; padding-left:25px;}
#content .article p {text-align:justify;}
#content .info {margin:10px 0; padding-bottom:8px; border-bottom:1px solid #ffdce1; color:#ff3360;}
#content .info a {color:#ff3360;}
#content .info a:hover {color:#FF0000;}
#content .info span.date, #content .info span.cat, #content .info span.user, #content .info span.comments {padding-left:15px;}
#content .info span.date {background:url("../design/ico_date.gif") 0 50% no-repeat;}
#content .info span.cat {background:url("../design/ico_cat.gif") 0 50% no-repeat; margin-left:8px;}
#content .info span.user {background:url("../design/ico_user.gif") 0 50% no-repeat; margin-left:8px;}
#content .info span.comments {background:url("../design/ico_comments.gif") 0 50% no-repeat; margin-left:8px;}
/* Content - More */
#content .btn-more {margin:0 0 15px 0; padding:0; border:0; position:relative;}
#content .btn-more a {display:block; position:absolute; top:0; right:0; width:67px; _width:95px; height:21px; margin:0; padding:0 0 0 28px; background:url("../design/btn_more.gif") 0 0 no-repeat; color:#FFF; text-decoration:none;}
#content .btn-more a:hover {background:url("../design/btn_more.gif") -95px 0 no-repeat;}
/* Right column */
#col {float:left; width:200px; margin:0; padding:0; background:#ffc8d4 url("../design/col_bg.gif") 0 0 repeat-y;}
#col-in {padding:20px 10px; background:url("../design/col_top.gif") 0 0 no-repeat;}
#col h3 {padding:13px 15px 14px 15px; margin:0 -10px 15px -10px; background:#ff94ab url("../design/col_title_bg.gif") 0 0 repeat-y; color:#7f000b;}
/* Right column - About me */
#col #about-me {margin-bottom:15px; line-height:130%;}
#col #about-me p {margin:0;}
#col #about-me #me {float:left; width:54px; height:58px; margin-right:7px;}
/* Right column - Category */
#col ul#category {margin:15px 0; padding:0; list-style:none;}
#col ul#category li {margin:0; padding:0; border-bottom:1px solid #ffdbe3;}
#col ul#category li a {display:block; padding:3px 0 3px 22px; background:url("../design/ico_archive.gif") 5px 6px no-repeat; text-decoration:none;}
#col ul#category li a:hover {background-color:#ffccd8; color:#7f000b;}
#col ul#category li#category-active a {background:#ffdbe3 url("../design/ico_archive2.gif") 5px 50% no-repeat; font-weight:bold;}
/* Right column - Archive */
#col ul#archive {margin:15px 0; padding:0; list-style:none;}
#col ul#archive li {margin:0; padding:0; border-bottom:1px solid #ffdbe3;}
#col ul#archive li a {display:block; padding:3px 0 3px 22px; background:url("../design/ico_archive.gif") 5px 50% no-repeat; text-decoration:none;}
#col ul#archive li a:hover {background-color:#ffccd8; color:#7f000b;}
#col ul#archive li#archive-active a {background:#ffdbe3 url("../design/ico_archive2.gif") 5px 6px no-repeat; font-weight:bold;}
/* Right column - Links */
#col ul#links {margin:15px 0; padding:0; list-style:none;}
#col ul#links li {margin:0; padding:0; border-bottom:1px solid #ffdbe3;}
#col ul#links li a {display:block; padding:3px 0 3px 22px; background:url("../design/ico_links.gif") 5px 6px no-repeat; text-decoration:none;}
#col ul#links li a:hover {background-color:#ffccd8; color:#7f000b;}
/* Footer */
#footer {position:relative; clear:both; width:770px; height:60px; margin-bottom:50px; background:url("../design/footer.jpg") 0 0 no-repeat; color:#ff3360;}
#footer a {color:#ff3360;}
#footer a:hover {color:#7f000b;}
/* Footer - "back on top" */
#top {position:absolute; top:55px; left:550px;}
#top p {position:relative; width:30px; height:25px; margin:0; overflow:hidden;}
#top p span {display:block; position:absolute; left:0; top:0; z-index:1; width:30px; height:25px; background:url("../design/ico_top.gif") 0 0 no-repeat; cursor:pointer;}
#top a:hover span {background:url("../design/ico_top.gif") -30px 0 no-repeat;}
/* Footer - copyright */
#footer p#copyright {position:absolute; top:10px; left:40px; margin:0;}
/* Footer - created by */
#createdby {position:absolute; top:10px; left:562px; margin:0; color:#ff6587;}
#createdby a {color:#ff6587;}

View File

@ -0,0 +1,29 @@
/*
Project: CrystalX
URL: http://www.nuvio.cz
Output device: print
Author: Vit Dlouhy (vit.dlouhy@nuvio.cz); Nuvio (www.nuvio.cz)
Last revision: 2006-12-05, 12:00 GMT+1
Structure:
display | position | float | overflow | width | height | border | margin | padding | background | align | font
*/
body {border:0; margin:0; padding:0; font-size:12pt}
a {color:#000; text-decoration:none;}
h1, h2, h3 {page-break-after:avoid; page-break-inside:avoid;}
table {border-collapse: collapse; border-width:1px; border-style:solid;}
th, td {display:table-cell; border-width:1px; border-style:solid;}
hr {display:block; height:2px; margin:0; padding:0; background:#000; border:0 solid #000; color:#000;}
blockquote {page-break-inside:avoid}
ul, ol, dl {page-break-before:avoid}
.noprint {display:none;}

BIN
nginx/webroot/design/bg.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 212 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 863 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 871 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 886 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 834 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 833 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 835 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 839 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 837 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 841 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 569 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 582 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 499 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 835 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 999 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 839 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 839 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 875 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 852 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 851 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 842 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 846 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 846 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

BIN
nginx/webroot/img/acc.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

BIN
nginx/webroot/img/blog2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
nginx/webroot/img/blog3.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

BIN
nginx/webroot/img/blog4.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

BIN
nginx/webroot/img/blog5.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

BIN
nginx/webroot/img/blog6.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 134 KiB

BIN
nginx/webroot/img/leave.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 431 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

BIN
nginx/webroot/img/you.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

71
nginx/webroot/index.html Normal file
View File

@ -0,0 +1,71 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" lang="cs">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Be my Valentine</title>
<link rel="stylesheet" media="screen,projection" type="text/css" href="css/main.css" />
<link rel="stylesheet" media="print" type="text/css" href="css/print.css" />
<link rel="stylesheet" media="aural" type="text/css" href="css/aural.css" />
</head>
<body id="www-url-cz">
<div id="main" class="box">
<div id="header">
<h1 id="logo"><a href="index.html">Be my <strong>Valentine</strong><span></span></a></h1>
<hr class="noscreen" />
</div>
<div id="tabs" class="noprint">
<h3 class="noscreen">Navigation</h3>
<ul class="box">
<li id="active"><a href="index.html">Home<span class="tab-l"></span><span class="tab-r"></span></a></li>
<li><a href="blog.html">Weblog<span class="tab-l"></span><span class="tab-r"></span></a></li>
<li><a href="about.html">About Me<span class="tab-l"></span><span class="tab-r"></span></a></li>
<li><a href="photos.html">Photos<span class="tab-l"></span><span class="tab-r"></span></a></li>
</ul>
<hr class="noscreen" />
</div>
<div id="page" class="box">
<div id="page-in" class="box">
<div id="strip" class="box noprint">
<hr class="noscreen" />
<p id="breadcrumbs">You are here: <a href="./index.html">Home</a></p>
<hr class="noscreen" />
</div>
<div id="content">
<p> <img src="img/acc.jpg" alt="Valentine"> </p>
<hr class="noscreen" />
</div>
<div id="col" class="noprint">
<div id="col-in">
<h3><span><a href="about.html">About Me</a></span></h3>
<div id="about-me">
<p><img src="img/profil.jpg" id="me" alt="Yeah, it´s me..." /> <strong>myheart_77</strong><br />
Age: 14<br />
In the sky<br />
<a href="https://myspace.com/dirty_heart_0787">Profile on MySpace</a></p>
</div>
<hr class="noscreen" />
<h3><span>Links</span></h3>
<ul id="links">
<li><a href="https://myspace.com/dirty_heart_0787" target="_blank">My MySpace</a></li>
<li><a href="https://www.youtube.com/watch?v=UAWcs5H-qgQ&list=PLzzwfO_D01M4nNqJKR828zz6r2wGikC5a" target="_blank">Favorite songs</a></li>
<li><a href="https://open.spotify.com/playlist/53NEfJTEt86ytgk5SaqMjZ" target="_blank">Songs #2</a></li>
</ul>
<hr class="noscreen" />
</div>
</div>
</div>
</div>
<div id="footer">
<div id="top" class="noprint">
<p><span class="noscreen">Back on top</span> <a href="#header" title="Back on top ^">^<span></span></a></p>
</div>
<hr class="noscreen" />
<p id="createdby">created by <a href="http://www.nuvio.cz">Nuvio | Webdesign</a> </p>
<p id="copyright">&copy; 2007 <a href="about.html">myheart_77</a></p>
</div>
</div>
</body>
</html>

73
nginx/webroot/photos.html Normal file
View File

@ -0,0 +1,73 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" lang="cs">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Be my Valentine</title>
<link rel="stylesheet" media="screen,projection" type="text/css" href="css/main.css" />
<link rel="stylesheet" media="print" type="text/css" href="css/print.css" />
<link rel="stylesheet" media="aural" type="text/css" href="css/aural.css" />
</head>
<body id="www-url-cz">
<div id="main" class="box">
<div id="header">
<h1 id="logo"><a href="index.html">Be my <strong>Valentine</strong><span></span></a></h1>
<hr class="noscreen" />
</div>
<div id="tabs" class="noprint">
<h3 class="noscreen">Navigation</h3>
<ul class="box">
<li><a href="index.html">Home<span class="tab-l"></span><span class="tab-r"></span></a></li>
<li><a href="blog.html">Weblog<span class="tab-l"></span><span class="tab-r"></span></a></li>
<li><a href="about.html">About Me<span class="tab-l"></span><span class="tab-r"></span></a></li>
<li id="active"><a href="photos.html">Photos<span class="tab-l"></span><span class="tab-r"></span></a></li>
</ul>
<hr class="noscreen" />
</div>
<div id="page" class="box">
<div id="page-in" class="box">
<div id="strip" class="box noprint">
<hr class="noscreen" />
<p id="breadcrumbs">You are here: <a href="./index.html">Home</a> &gt; <strong>Photos</strong></p>
<hr class="noscreen" />
</div>
<div id="content">
<p> <img src="img/blog1.jpeg" alt="pic"> <img width="300" src="img/blog2.jpg" alt="pic"></p>
<p> <img src="img/blog3.jpg" width="400" alt="pic"> </p>
<p> <img src="img/blog4.jpg" width="450" alt="pic"> </p>
<p> <img src="img/ignore.jpg" width="300" alt="pic"> </p>
<p> <img src="img/blog5.jpg" width="450" alt="pic"> </p>
<p> <img src="img/blog6.jpg" width="250" alt="pic"> </p>
<hr class="noscreen" />
</div>
<div id="col" class="noprint">
<div id="col-in">
<h3><span><a href="about.html">About Me</a></span></h3>
<div id="about-me">
<p><img src="img/profil.jpg" id="me" alt="Yeah, it´s me..." /> <strong>myheart_77</strong><br />
Age: 14<br />
In the sky<br />
<a href="https://myspace.com/dirty_heart_0787">Profile on MySpace</a></p>
</div>
<hr class="noscreen" />
<h3><span>Links</span></h3>
<ul id="links">
<li><a href="https://myspace.com/dirty_heart_0787" target="_blank">My MySpace</a></li>
<li><a href="https://www.youtube.com/watch?v=UAWcs5H-qgQ&list=PLzzwfO_D01M4nNqJKR828zz6r2wGikC5a" target="_blank">Favorite songs</a></li>
<li><a href="https://open.spotify.com/playlist/53NEfJTEt86ytgk5SaqMjZ" target="_blank">Songs #2</a></li>
</ul>
<hr class="noscreen" />
</div>
</div>
</div>
</div>
<div id="footer">
<div id="top" class="noprint">
<p><span class="noscreen">Back on top</span> <a href="#header" title="Back on top ^">^<span></span></a></p>
</div>
<hr class="noscreen" />
<p id="createdby">created by <a href="http://www.nuvio.cz">Nuvio | Webdesign</a> </p>
<p id="copyright">&copy; 2007 <a href="about.html">myheart_77</a></p>
</div>
</div>
</body>
</html>