Add ability to run dev ruby server with SSL
This commit is contained in:
parent
d896d673a8
commit
89b782957e
14
SSL_LOCALLY.md
Normal file
14
SSL_LOCALLY.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
Sometimes there is a need to test the app with an SSL connection, for example for
|
||||
testing pusher on Travis CI Pro.
|
||||
|
||||
In order to run the app with SSL enabled you need to:
|
||||
|
||||
* generate self signed certificate as described here: https://gist.github.com/trcarden/3295935
|
||||
* one difference is that you need to use localhost.ssl, because travis-api
|
||||
doesn't whitelist localhost.ssl at the moment
|
||||
* run ruby server with `SSL=true TRAVIS_PRO=true waiter/script/server`
|
||||
* run Ember app in build mode only `TRAVIS_PRO=true ember build --watch`
|
||||
|
||||
Now open the app on whatever port ruby server is running (3001 by default). The
|
||||
ruby app will serve files generated by `ember build` and it will allow SSL
|
||||
connections
|
|
@ -4,5 +4,8 @@ cd "$(dirname "$0")/.."
|
|||
[ $RACK_ENV ] || RACK_ENV=development
|
||||
|
||||
cmd="ruby -I lib -S bundle exec ruby -I lib -S puma -p $PORT"
|
||||
if [ "$SSL" = true ] ; then
|
||||
cmd="$cmd -b ssl://127.0.0.1:$PORT?key=server.key&cert=server.crt"
|
||||
fi
|
||||
# [[ $RACK_ENV == "development" ]] && exec rerun "$cmd" -p '{lib,public}/**/*'
|
||||
exec $cmd
|
||||
|
|
Loading…
Reference in New Issue
Block a user