From d857991d18332ba2b41844a10ba55ae37388c74f Mon Sep 17 00:00:00 2001 From: floppydiskette Date: Sun, 6 Oct 2024 04:11:08 +0100 Subject: Add privacy page --- app/Http/Controllers/PrivacyController.php | 16 ++++++++++++++++ resources/views/privacy.blade.php | 26 ++++++++++++++++++++++++++ routes/web.php | 2 ++ 3 files changed, 44 insertions(+) create mode 100644 app/Http/Controllers/PrivacyController.php create mode 100644 resources/views/privacy.blade.php diff --git a/app/Http/Controllers/PrivacyController.php b/app/Http/Controllers/PrivacyController.php new file mode 100644 index 0000000..277bf35 --- /dev/null +++ b/app/Http/Controllers/PrivacyController.php @@ -0,0 +1,16 @@ + + Privacy +
+

What am I doing with your data?

+
+

1. What's collected?

+

This site uses the Apache2 webserver and thus, for every request received, the following is logged:

+ +

My website doesn't collect any more than stated above (except MediaWiki maybe)


+

2. Why are logs kept?

+

So I can examine and prevent attacks such as spam or DDoS-ing attempts


+

3. When are the logs analyzed?

+

Usually, unless I suspect an attack of some kind, I won't actively spend hours perusing the logs.


+

4. Can I opt-out?

+

Maybe? If you want to, you can email wehmaster@weh.moe and I'll try and sort it out as fast as possible (assuming I can figure out how)


+
Any outlinks and hotlinked/embedded resources are subject to their own privacy policies and have nothing to do with me.
+
Last updated: September 9th, 2024
+
+ diff --git a/routes/web.php b/routes/web.php index 0b10251..af97484 100644 --- a/routes/web.php +++ b/routes/web.php @@ -6,6 +6,7 @@ use App\Http\Controllers\ComputersController; use App\Http\Controllers\GuestbookController; use App\Http\Controllers\HomeController; use App\Http\Controllers\MusicController; +use App\Http\Controllers\PrivacyController; use Illuminate\Support\Facades\Route; /* @@ -26,5 +27,6 @@ Route::get('/guestbook', [GuestbookController::class, 'show']); Route::get('/calculators', [CalculatorsController::class, 'show']); Route::get('/computers', [ComputersController::class, 'show']); Route::get('/music', [MusicController::class, 'show']); +Route::get('/privacy', [PrivacyController::class, 'show']); Route::post('/guestbook', [GuestbookController::class, 'addEntry']) ->middleware('rate_limit'); -- cgit v1.2.3-54-g00ecf