From aef6f78d010ac50325d6b7abf983d591845fc502 Mon Sep 17 00:00:00 2001 From: anon Date: Sat, 5 Jul 2025 13:15:10 +0200 Subject: [PATCH] reorder the project --- Makefile | 2 +- example.html => example_frontend.html | 0 ....lighttpd.conf => example_frontend.lighttpd.conf | 2 +- evil.tcl => test/evil.tcl | 0 example.png => test/test.png | Bin example.txt => test/test.txt | 0 upload-test.sh => test/upload-test.sh | 0 7 files changed, 2 insertions(+), 2 deletions(-) rename example.html => example_frontend.html (100%) rename example.lighttpd.conf => example_frontend.lighttpd.conf (67%) rename evil.tcl => test/evil.tcl (100%) rename example.png => test/test.png (100%) rename example.txt => test/test.txt (100%) rename upload-test.sh => test/upload-test.sh (100%) diff --git a/Makefile b/Makefile index 4eff9af..b91412e 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ serve: lighttpd -D -f lighttpd.conf front: - lighttpd -D -f example.lighttpd.conf + lighttpd -D -f example_frontend.lighttpd.conf clean: -${RM} -frfr out/ diff --git a/example.html b/example_frontend.html similarity index 100% rename from example.html rename to example_frontend.html diff --git a/example.lighttpd.conf b/example_frontend.lighttpd.conf similarity index 67% rename from example.lighttpd.conf rename to example_frontend.lighttpd.conf index 86a4f82..cdca761 100644 --- a/example.lighttpd.conf +++ b/example_frontend.lighttpd.conf @@ -3,4 +3,4 @@ server.document-root = var.CWD server.port = "8081" server.modules += ( "mod_rewrite" ) -url.rewrite-once = ( ".*" => "/example.html" ) +url.rewrite-once = ( ".*" => "/example_frontend.html" ) diff --git a/evil.tcl b/test/evil.tcl similarity index 100% rename from evil.tcl rename to test/evil.tcl diff --git a/example.png b/test/test.png similarity index 100% rename from example.png rename to test/test.png diff --git a/example.txt b/test/test.txt similarity index 100% rename from example.txt rename to test/test.txt diff --git a/upload-test.sh b/test/upload-test.sh similarity index 100% rename from upload-test.sh rename to test/upload-test.sh -- 2.39.5