aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMarvin Borner2018-08-17 18:43:30 +0200
committerMarvin Borner2018-08-17 18:43:30 +0200
commit0db627a954fffb42617ff3ecc9e3d56d24a5bb3f (patch)
tree9621fa71fe330b3e8c15a3718c891a4aa62d61ef
parent83d9936c586e6c5d8d464b7ae56da318268fa0b9 (diff)
Fixed remote access
-rw-r--r--StartServer.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/StartServer.sh b/StartServer.sh
index a81c1e9..42be53a 100644
--- a/StartServer.sh
+++ b/StartServer.sh
@@ -1,7 +1,7 @@
#!/bin/bash -e
redis-server &
PIDS[0]=$!
-php artisan serve --host=192.168.0.59 &
+sudo php artisan serve --host 0.0.0.0 --port 80 &
PIDS[1]=$!
trap "kill ${PIDS[*]}" SIGINT