blob: a99771cafd0d3d1be1c4a307584847f5d1a2462d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
diff --git a/web.scm b/web.scm
index 411a6cc..e76f8b2 100644
--- a/web.scm
+++ b/web.scm
@@ -4,4 +4,4 @@
(lambda (request request-body)
(values '((content-type . (text/plain)))
(process-line (utf8->string request-body))))
- 'http '(#:port 7183))
+ 'http '(#:port (getenv "PORT")))
|