diff --git a/server.py b/server.py index 614abfa..ac07bee 100644 --- a/server.py +++ b/server.py @@ -436,6 +436,31 @@ def hnsdoh_acme(): print(record) return jsonify({'status': 'success'}) +@app.route('/ID1') +def ID1(): + # Proxy to ID1 url + req = requests.get('https://id1.woodburn.au') + return make_response(req.content, 200, {'Content-Type': req.headers['Content-Type']}) + +@app.route('/ID1/') +def ID1_path(path): + # Proxy to ID1 url + req = requests.get('https://id1.woodburn.au/' + path) + return make_response(req.content, 200, {'Content-Type': req.headers['Content-Type']}) + +@app.route('/ID1.xml') +def ID1_xml(): + # Proxy to ID1 url + req = requests.get('https://id1.woodburn.au/ID1.xml') + return make_response(req.content, 200, {'Content-Type': req.headers['Content-Type']}) + +@app.route('/podsync.opml') +def podsync(): + req = requests.get('https://id1.woodburn.au/podsync.opml') + return make_response(req.content, 200, {'Content-Type': req.headers['Content-Type']}) + + + # 404 catch all @app.errorhandler(404) def not_found(e): diff --git a/templates/about.html b/templates/about.html index fd3db1a..8e88ded 100644 --- a/templates/about.html +++ b/templates/about.html @@ -68,7 +68,7 @@ -

Hi, I am Nathan Woodburn and I live in Canberra
I am currently studying at the Australian National University
I enjoy 3D printing and CAD
I code stuff with C#, Linux Bash
I can code in a ton of other languages with Google's help
I'm a co-founder of Handshake Australia
I currently work for Namebase

+

Hi, I am Nathan Woodburn and I live in Canberra
I am currently studying at the Australian National University
I enjoy 3D printing and CAD
I code stuff with C#, Linux Bash and tons of other languages
I'm a co-founder of Handshake Australia
I currently work for Namebase

diff --git a/templates/index.html b/templates/index.html index 0ca97b6..58d8574 100644 --- a/templates/index.html +++ b/templates/index.html @@ -78,7 +78,7 @@ Check them out here!

About ME

My Profile
-

Hi, I'm Nathan Woodburn and I live in Canberra, Australia.
I've been home schooled all the way to Yr 12.
I'm currently studying a Bachelor of Computer Science.
I started a 3D printing service in early 2021.
I'm one of the founders of Handshake AU working to increase Handshake adoption in Australia.
I work for Namebase as tech and general support. Namebase is a US based company owned by Namecheap.

+

Hi, I'm Nathan Woodburn and I live in Canberra, Australia.
I've been home schooled all the way to Yr 12.
I'm currently studying a Bachelor of Computer Science.
I create tons of random projects so this site is often behind.
I'm one of the founders of Handshake AU working to increase Handshake adoption in Australia.
I work for Namebase as tech and general support. Namebase is a US based company owned by Namecheap.

I'm currently working on

{{repo | safe}}

@@ -89,7 +89,7 @@ Check them out here!
  • 3D Printing
  • Autodesk Fusion 360 (CAD Modeling)
  • -
  • C# Programming
  • +
  • Programming with various languages
  • DNS, DNSSEC and Trustless SSL
  • Linux Servers and CLI
  • NGINX Web Servers