diff options
author | Marvin Borner | 2018-08-17 18:43:30 +0200 |
---|---|---|
committer | Marvin Borner | 2018-08-17 18:43:30 +0200 |
commit | 0db627a954fffb42617ff3ecc9e3d56d24a5bb3f (patch) | |
tree | 9621fa71fe330b3e8c15a3718c891a4aa62d61ef | |
parent | 83d9936c586e6c5d8d464b7ae56da318268fa0b9 (diff) |
Fixed remote access
-rw-r--r-- | StartServer.sh | 2 |
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 |