aboutsummaryrefslogtreecommitdiffhomepage
path: root/StartServer.sh
diff options
context:
space:
mode:
Diffstat (limited to 'StartServer.sh')
-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