Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ucberkeley/Beehive
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: asuc-octo/Beehive
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref

There isn’t anything to compare.

ucberkeley:master and asuc-octo:master are entirely different commit histories.

Showing with 2 additions and 3 deletions.
  1. +2 −3 entrypoint.sh
5 changes: 2 additions & 3 deletions entrypoint.sh
Original file line number Diff line number Diff line change
@@ -21,9 +21,8 @@ bundle exec whenever --update-crontab
# /usr/sbin/apache2ctl restart
if [ "$RAILS_ENV" = "production" ]
then
{ certbot certonly -n --webroot -w /var/www/html --agree-tos --redirect -m technology@asuc.org -d beehive.berkeley.edu;
sed -i 's/SSLCertificateFile.*/SSLCertificateFile \/etc\/letsencrypt\/live\/beehive.berkeley.edu\/fullchain.pem/g' /etc/apache2/sites-enabled/beehive-ssl.conf;
sed -i 's/SSLCertificateKeyFile.*/SSLCertificateKeyFile \/etc\/letsencrypt\/live\/beehive.berkeley.edu\/privkey.pem/g' /etc/apache2/sites-enabled/beehive-ssl.conf;
{ certbot -n --apache --agree-tos --redirect -m technology@asuc.org -d beehive.berkeley.edu;
sed -i 's/SSLProtocol.*/SSLProtocol all -SSLv3 -TLSv1 -TLSv1.1/g' /etc/letsencrypt/options-ssl-apache.conf;
/usr/sbin/apache2ctl restart; } &
else
echo "Running Development Environment"