Skip to content

Commit c740525

Browse files
committed
Changed website to group one.
1 parent 00ed16d commit c740525

File tree

12 files changed

+481
-5
lines changed

12 files changed

+481
-5
lines changed

Dockerfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ ARG TARGETARCH
44

55
LABEL org.opencontainers.image.authors="https://bitnami.com/contact; https://sidlibrary.org" \
66
org.opencontainers.image.description="Application packaged by Bitnami; flavoured by Sidney Jeong" \
7-
org.opencontainers.image.ref.name="1.23.2-jammy-r0" \
7+
org.opencontainers.image.ref.name="1.23.3-jammy-r0" \
88
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/nginx" \
99
org.opencontainers.image.title="nginx" \
1010
org.opencontainers.image.vendor="VMware, Inc.; Sidney Jeong" \
11-
org.opencontainers.image.version="1.23.2"
11+
org.opencontainers.image.version="1.23.3"
1212

1313
ENV HOME="/" \
1414
OS_ARCH="${TARGETARCH:-amd64}" \
@@ -28,7 +28,6 @@ RUN apt-get update && apt-get upgrade -y && \
2828
apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives
2929
RUN mkdir -p /opt/bitnami/nginx/logs /opt/bitnami/nginx/html /opt/bitnami/nginx/tmp /opt/bitnami/nginx/sbin /opt/bitnami/nginx/server_blocks && \
3030
cp -av /etc/nginx /opt/bitnami/nginx/conf && chmod -R g+rwX /opt/bitnami
31-
RUN git clone --single-branch --branch maintenance-page https://github.com/sid0831/sid0831.github.io /opt/bitnami/nginx/html
3231
RUN ln -sf /dev/stdout /opt/bitnami/nginx/logs/access.log && \
3332
ln -sf /dev/stderr /opt/bitnami/nginx/logs/error.log
3433

@@ -38,7 +37,7 @@ RUN cp -av /usr/sbin/nginx /opt/bitnami/nginx/sbin/nginx && \
3837
RUN /opt/bitnami/scripts/nginx/postunpack.sh
3938
RUN ln -sfr /lib/x86_64-linux-gnu/libssl.so.3 /lib/x86_64-linux-gnu/libssl.so.1.1 && \
4039
ln -sfr /lib/x86_64-linux-gnu/libcrypto.so.3 /lib/x86_64-linux-gnu/libcrypto.so.1.1
41-
ENV APP_VERSION="1.23.2" \
40+
ENV APP_VERSION="1.23.3" \
4241
BITNAMI_APP_NAME="nginx" \
4342
NGINX_HTTPS_PORT_NUMBER="" \
4443
NGINX_HTTP_PORT_NUMBER="" \

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ version: '2'
22

33
services:
44
nginx:
5-
image: ghcr.io/sid0831/nginx-container:latest
5+
image: ghcr.io/hyper-level-nerds/maintenance-page:latest
66
ports:
77
- '80:8080'
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<title>You've encountered an error</title>
6+
<style>
7+
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Oswald:wght@700&family=Ubuntu+Mono&display=swap');
8+
p.title {
9+
font-family: 'Oswald', sans-serif;
10+
text-align: center;
11+
font-weight: bold;
12+
color: red;
13+
font-size: 32pt;
14+
margin-top: 8pt;
15+
margin-bottom: 16pt;
16+
}
17+
18+
p.main {
19+
font-family: 'Open Sans', sans-serif;
20+
font-size: 16pt;
21+
color: white;
22+
text-align: center;
23+
}
24+
25+
span.mono {
26+
font-family: 'Ubuntu Mono', monospace;
27+
font-size: 16pt;
28+
color: white;
29+
}
30+
</style>
31+
</head>
32+
33+
<body bgcolor="#101820">
34+
<p class="title">
35+
<img src="assets/morpheus_meme.jpg" />
36+
</p>
37+
<p class="title">
38+
HTTP 404: Sorry, that didn't go well.
39+
</p>
40+
<p class="main">
41+
You are trying to visit a page that doesn't exist on our site&nbsp; <span class="mono">pie.dc.sidlibrary.org.</span>
42+
<br /> If you're goofying around with random URI, please gently leave without doing anything malicious.
43+
</p>
44+
</body>
45+
46+
</html>
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
BSD 3-Clause License
2+
3+
Copyright (c) 2022, Sidney Jeong
4+
All rights reserved.
5+
6+
Redistribution and use in source and binary forms, with or without
7+
modification, are permitted provided that the following conditions are met:
8+
9+
1. Redistributions of source code must retain the above copyright notice, this
10+
list of conditions and the following disclaimer.
11+
12+
2. Redistributions in binary form must reproduce the above copyright notice,
13+
this list of conditions and the following disclaimer in the documentation
14+
and/or other materials provided with the distribution.
15+
16+
3. Neither the name of the copyright holder nor the names of its
17+
contributors may be used to endorse or promote products derived from
18+
this software without specific prior written permission.
19+
20+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
Welcome to Sid's GitHub page
2+
============================
3+
4+
About me
5+
--------
6+
7+
* A Data Centre Technician, who used to study sociology in grad school.
8+
* He/They [AMAB enby](https://en.wikipedia.org/wiki/Non-binary_gender).
9+
* A great fan of [Dreamcatcher](https://en.wikipedia.org/wiki/Dreamcatcher_(group)), a k-pop girl group
10+
11+
Education
12+
---------
13+
14+
* **Sungkyunkwan University**, Seoul, South Korea
15+
- 2007-2012, Bachelor of Arts in Sociology and Oriental Studies
16+
* **Seoul National University**, Seoul, South Korea
17+
- 2012-2018, Master of Arts in Sociology (_Incomplete_)
18+
- Incomplete due to financial challenges
19+
* **Busan IT Training Centre**, Busan, South Korea
20+
21+
Experience
22+
----------
23+
24+
* **EB Tech Net**, Seoul, South Korea
25+
- Oct 2019 - May 2020, Systems Engineer
26+
- Did a technical support / pre-sales concerning early contact of reselling an HPC cloud service based in the US while also doing the technical support for customers needing it for installing and maintaining the servers. Customers included: Samsung SDS, LG U+, Hyundai Maritime Insurance, Korea Environment Corporation.
27+
* **PersolKelly Korea**, Seoul, South Korea
28+
- Jul 2020 - Dec 2021, Data Centre Operations Technician
29+
- As a Temp Operations Technician on-site at Google, I did builds, deployments, repairs, and ticket-based problem solving independent to full-time employees, in overlapping but slightly smaller scope.
30+
31+
To do
32+
-----
33+
34+
* [ ] Improve GitHub page and repositories.
35+
* [ ] Revive the [blog](https://www.sidlibrary.org).
36+
* [x] Survive.
131 KB
Loading
Lines changed: 68 additions & 0 deletions
Loading
1.12 KB
Binary file not shown.
44.1 KB
Loading

0 commit comments

Comments
 (0)