Compare commits

..

10 Commits

Author SHA1 Message Date
99a3be65db Merge pull request 'Update captain-definition' (#6) from bugfix-issue5 into master
Reviewed-on: #6
2025-01-09 15:50:14 +00:00
22c78ca7ba Update captain-definition
Fixing issue #5
2025-01-09 15:49:20 +00:00
bd0c3031b3 Merge pull request 'Transition from busybox httpd to nginx' (#4) from nginx into master
Reviewed-on: #4
2025-01-09 15:38:30 +00:00
Jason Williams
66d59073b0 Transition from busybox httpd to nginx 2025-01-09 08:36:17 -07:00
23abff6f5f Merge pull request 'dev-reorganization' (#3) from dev-reorganization into master
Reviewed-on: #3
2025-01-03 22:43:20 +00:00
Jason Williams
6eb5e67610 Adding readme 2025-01-03 15:41:02 -07:00
Jason Williams
258f82720c Moving local development server files to their own folder 2025-01-03 14:13:57 -07:00
Jason Williams
972ad27df2 Renaming /app to /www 2025-01-03 13:50:25 -07:00
f30929f781 Merge pull request 'Removing non-standard meta tag from index.html' (#2) from dev-deploytest into master
Reviewed-on: #2
2025-01-03 18:35:42 +00:00
Jason Williams
3e8c2936c4 Removing non-standard meta tag from index.html 2025-01-03 11:34:03 -07:00
19 changed files with 33 additions and 13 deletions

View File

@@ -1,3 +1,3 @@
FROM docker.io/lipanski/docker-static-website
COPY httpd.conf httpd.conf
COPY ./app /app
FROM docker.io/nginx:1-alpine
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY ./www /www

17
README.md Normal file
View File

@@ -0,0 +1,17 @@
# Welcome
YouCock is a (now defunct) online shirine to all things Gareth Saunders. It originally lived at youcock.ga, and is now available at [youcock.jaywll.co](https://youcock.jaywll.co).
We started it some time around the mid-aughts to catalogue and preserve the amazing antics of our good friend Gareth. Even when we created it was unashamedly retro, harking back to the days of geocities and some of the early web-design practices and paradigms that went with it. I don't think we had a copy of Macromedia Dreamweaver, but if we did then that's probably what we'd have used. Or maybe Microsoft Frontpage '98.
Anyway, our preservation efforts seem successful because it's now some two decades later and the content still exists with only a few minor updates. It's now version controlled through git, and built to be deployed on modern app-hosting infrastructure.
## Contributing
The authoritative source repository for this content is at [code.jaywll.co](https://code.jaywll.co/jason/YouCock).
I can't imagine anyone would want to contribute to this 20 year old website or have any use for the code, but whatever - it's available to you if that's your jam.
The `master` and `release` branches are protected. If you do want to make changes clone the changes, create a new branch with a sensible name for the updates you want to make, and then create a pull request to merge those changes back into `master`.
The public website is based on the `release` branch, and I will update it from `master` at my discretion.

View File

@@ -1,7 +1,4 @@
{
"schemaVersion": 2,
"dockerfileLines": [
"FROM lipanski/docker-static-website",
"COPY ./app ."
]
"dockerfilePath": "./Dockerfile"
}

View File

@@ -1,4 +0,0 @@
# Script used to spin up a local webserver for development
#!/bin/bash
podman run -it --rm --init -p 3000:3000 $(podman build -q .)

View File

@@ -1 +0,0 @@
H:/app

4
local-test.sh Normal file
View File

@@ -0,0 +1,4 @@
# Script used to spin up a local webserver for development & testing
#!/bin/bash
podman run -it --rm -p 3000:80 $(podman build -q .)

8
nginx.conf Normal file
View File

@@ -0,0 +1,8 @@
server {
listen 80;
root /www;
location / {
index index.html;
}
}

View File

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@@ -2,7 +2,6 @@
<html>
<head>
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
<meta name="git" content="https://code.jaywll.co/jason/YouCock">
<title>You Cock!</title>
</head>
<body style="margin: 0px; background-image: url(bkgrnd.jpg);">

View File

Before

Width:  |  Height:  |  Size: 73 KiB

After

Width:  |  Height:  |  Size: 73 KiB

View File

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

View File

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 31 KiB

View File

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 30 KiB

View File

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 37 KiB

View File

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 33 KiB

View File

Before

Width:  |  Height:  |  Size: 126 KiB

After

Width:  |  Height:  |  Size: 126 KiB

View File

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB