The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 

16 Zeilen
420 B

  1. #!/bin/bash
  2. #
  3. # Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
  4. #
  5. if [[ -d /home/mitmproxy ]] ; then
  6. service mitmproxy stop
  7. fi
  8. service nginx stop
  9. certbot renew --standalone --non-interactive || echo "Error updating SSL certificates"
  10. if [[ -d /home/mitmproxy ]] ; then
  11. service mitmproxy restart
  12. fi
  13. service nginx restart