Jump to content

Main Page: Difference between revisions

From jb-vpn.uk Wiki
Documentation Index: removing duplicate section
Updated Main Page with comprehensive documentation links
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
== Welcome to the jb-vpn.uk Wiki ==
== Welcome to the jb-vpn.uk Wiki ==


This wiki contains comprehensive documentation for the reverse proxy system that forwards traffic from public subdomains to services on a Synology NAS via OpenVPN.
This wiki contains documentation for the jb-vpn.uk infrastructure: reverse proxy (Caddy), VPS-hosted services (WebApp, MediaWiki), and Synology NAS services reached via OpenVPN (DSM, Plex).


== Documentation ==
== Documentation ==
Line 7: Line 7:
The following documentation is available:
The following documentation is available:


=== Getting Started ===
=== Cursor SSH ===


==== Openvpn Server ====
* [[Cursor SSH:Quick Reference|Quick Reference]]
* [[Documentation:Certificate Management|Certificate Management]]
* [[Cursor SSH:Setup|Setup]]
* [[Documentation:Client Configuration|Client Configuration]]
* [[Documentation:Integration|Integration]]
* [[Documentation:Server Configuration|Server Configuration]]
* [[Documentation:User Management|User Management]]


==== System Overview ====
=== OpenVPN ===
* [[Documentation:Components|Components]]
* [[Documentation:Dns Requirements|Dns Requirements]]
* [[Documentation:Network Architecture|Network Architecture]]
* [[Documentation:Security|Security]]
* [[Documentation:Service Management|Service Management]]


=== Configuration Guides ===
* [[OpenVPN:Certificate Management|Certificate Management]]
* [[OpenVPN:Client Configuration|Client Configuration]]
* [[OpenVPN:Integration|Integration]]
* [[OpenVPN:Raspberry Pi Auto Connect|Raspberry Pi Auto Connect]]
* [[OpenVPN:Server Configuration|Server Configuration]]
* [[OpenVPN:User Management|User Management]]


* [[Documentation:Current Services|Current Services]]
=== SSH Port Forwarding ===
* [[Documentation:Cursor Ssh Quick Reference|Cursor Ssh Quick Reference]]
 
* [[Documentation:Cursor Ssh Setup|Cursor Ssh Setup]]
* [[SSH Port Forwarding:Best Practices|Best Practices]]
* [[Documentation:Ssh Port Forwarding Quickstart|Ssh Port Forwarding Quickstart]]
* [[SSH Port Forwarding:Configuration|Configuration]]
* [[SSH Port Forwarding:Management|Management]]
* [[SSH Port Forwarding:Overview|Overview]]
* [[SSH Port Forwarding:Quickstart|Quickstart]]
 
=== Services ===
 
* [[Services:Current Services|Current Services]]


==== Adding Services ====
==== Adding Services ====
* [[Documentation:Best Practices|Best Practices]]
* [[Services:Best Practices|Best Practices]]
* [[Documentation:Configuration Options|Configuration Options]]
* [[Services:Configuration Options|Configuration Options]]
* [[Documentation:Prerequisites|Prerequisites]]
* [[Services:Prerequisites|Prerequisites]]
* [[Documentation:Service Examples|Service Examples]]
* [[Services:Service Examples|Service Examples]]
* [[Documentation:Step By Step|Step By Step]]
* [[Services:Step By Step|Step By Step]]
 
=== System ===


==== Ssh Port Forwarding ====
* [[System:Components|Components]]
* [[Documentation:Best Practices|Best Practices]]
* [[System:DNS Requirements|DNS Requirements]]
* [[Documentation:Configuration|Configuration]]
* [[System:Network Architecture|Network Architecture]]
* [[Documentation:Management|Management]]
* [[System:Security|Security]]
* [[Documentation:Overview|Overview]]
* [[System:Service Management|Service Management]]


=== Troubleshooting ===
=== Troubleshooting ===


* [[Documentation:Nginx Troubleshooting|Nginx Troubleshooting]]
* [[Troubleshooting:Nginx Troubleshooting|Nginx Troubleshooting]]
* [[Documentation:Openvpn Troubleshooting|Openvpn Troubleshooting]]
* [[Troubleshooting:Openvpn Troubleshooting|Openvpn Troubleshooting]]
* [[Documentation:Port Forwarding Troubleshooting|Port Forwarding Troubleshooting]]
* [[Troubleshooting:Port Forwarding Troubleshooting|Port Forwarding Troubleshooting]]
* [[Documentation:Service Troubleshooting|Service Troubleshooting]]
* [[Troubleshooting:Service Troubleshooting|Service Troubleshooting]]
 
=== Webapp ===
 
* [[Webapp:Deployment|Deployment]]


=== Wiki Management ===
=== Wiki Management ===


* [[Documentation:Fix Wiki Redirect|Fix Wiki Redirect]]
* [[Wiki Management:Upload Instructions|Upload Instructions]]
* [[Documentation:Upload Instructions|Upload Instructions]]


== Quick Links ==
== Quick Links ==
Line 68: Line 76:
* '''VPN Network''': 10.8.0.0/24
* '''VPN Network''': 10.8.0.0/24
* '''Synology NAS''': 10.8.0.2 (via VPN)
* '''Synology NAS''': 10.8.0.2 (via VPN)
* '''Web Server''': Nginx
* '''Edge proxy''': Caddy (ports 80/443)
* '''SSL''': Let's Encrypt (Certbot)
* '''SSL''': Let's Encrypt (automatic via Caddy)


== Quick Reference Commands ==
== Quick Reference Commands ==


<pre class="lang-bash">
<pre class="lang-bash">
# Test nginx configuration
# Caddy
nginx -t
caddy validate --config /etc/caddy/Caddyfile
systemctl reload caddy
journalctl -u caddy -n 50


# Reload nginx
# Wiki stack
systemctl reload nginx
cd /var/www/wiki.jb && docker compose ps


# Check SSL certificates
# Test public wiki
certbot certificates
 
# View nginx logs
tail -f /var/log/nginx/error.log
 
# Test service
curl -I https://wiki.jb-vpn.uk
curl -I https://wiki.jb-vpn.uk
</pre>
</pre>
----
''Last updated: 2025-12-31''

Latest revision as of 14:04, 16 May 2026

Welcome to the jb-vpn.uk Wiki

[edit]

This wiki contains documentation for the jb-vpn.uk infrastructure: reverse proxy (Caddy), VPS-hosted services (WebApp, MediaWiki), and Synology NAS services reached via OpenVPN (DSM, Plex).

Documentation

[edit]

The following documentation is available:

Cursor SSH

[edit]

OpenVPN

[edit]

SSH Port Forwarding

[edit]

Services

[edit]

Adding Services

[edit]

System

[edit]

Troubleshooting

[edit]

Webapp

[edit]

Wiki Management

[edit]
[edit]

Services

[edit]

System Information

[edit]
  • VPS IP: 87.106.61.62
  • VPN Network: 10.8.0.0/24
  • Synology NAS: 10.8.0.2 (via VPN)
  • Edge proxy: Caddy (ports 80/443)
  • SSL: Let's Encrypt (automatic via Caddy)

Quick Reference Commands

[edit]
# Caddy
caddy validate --config /etc/caddy/Caddyfile
systemctl reload caddy
journalctl -u caddy -n 50

# Wiki stack
cd /var/www/wiki.jb && docker compose ps

# Test public wiki
curl -I https://wiki.jb-vpn.uk