Add konesaliturku.fi website
Colocation/datacenter service website for Konesali Turku with: - One-page main site (hero, services, pricing, contact form) - Technical specs page (power, cooling, connectivity, security) - Dark blue technical theme, fully responsive - PHP backend for contact form with rate limiting - Honeypot bot protection Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
15
konesaliturku/server.py
Normal file
15
konesaliturku/server.py
Normal file
@@ -0,0 +1,15 @@
|
||||
import subprocess
|
||||
import sys
|
||||
|
||||
def main():
|
||||
try:
|
||||
subprocess.run(
|
||||
["php", "-S", "localhost:3001"],
|
||||
check=True
|
||||
)
|
||||
except KeyboardInterrupt:
|
||||
print("\nServer stopped.")
|
||||
sys.exit(0)
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Reference in New Issue
Block a user