Skip to content

Commit

Permalink
remove ssl for devstack
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Hicks <[email protected]>
  • Loading branch information
awhicks committed Apr 12, 2021
1 parent 4af54ac commit fc3d192
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ nohup bash -c "rake jobs:work >> ${APP_LOG_FILE} 2>&1 &"
echo "-------------------------------------------------------"
echo "Starting server"
echo "-------------------------------------------------------"
echo "RAILS_ENV=$RAILS_ENV bundle exec thin start --ssl --ssl-key-file server.key --ssl-cert-file server.crt -p ${PORT}"
#echo "RAILS_ENV=$RAILS_ENV bundle exec thin start --ssl --ssl-key-file server.key --ssl-cert-file server.crt -p ${PORT}"
echo "RAILS_ENV=$RAILS_ENV bundle exec thin start -p ${PORT}"
#RAILS_ENV=${ENVIRONMENT} bundle exec thin start --ssl --ssl-key-file server.key --ssl-cert-file server.crt -p ${PORT} #>> ${APP_LOG_FILE} 2>&1
RAILS_ENV=${ENVIRONMENT} bundle exec thin start -p ${PORT} #>> ${APP_LOG_FILE} 2>&1
echo "-------------------------------------------------------"

0 comments on commit fc3d192

Please sign in to comment.