Skip to content

Commit a98cb22

Browse files
committed
Merge pull request #4 from jdreesen/https
Use HTTPS wherever possible
2 parents 7b1c142 + afbf2d3 commit a98cb22

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ It's intent is to be compatible with classic work queue solutions (RabbitMQ, Bea
1111
Current implementations:
1212

1313
- InMemory: synchronous implementation, task are executed directly (useful for tests or dev environments)
14-
- [RabbitMQ](http://www.rabbitmq.com/)
15-
- [Beanstalkd](http://kr.github.io/beanstalkd/)
14+
- [RabbitMQ](https://www.rabbitmq.com/)
15+
- [Beanstalkd](https://kr.github.io/beanstalkd/)
1616

1717
Feel free to contribute and submit other implementations (Gearman, …).
1818

couscous.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ templateUrl: https://github.com/myclabs/couscous-template
22

33
template:
44
# Base URL of the published website
5-
baseUrl: http://myclabs.github.io/Work
5+
baseUrl: https://myclabs.github.io/Work
66

77
github:
88
user: myclabs

vagrant/bootstrap.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ apt-get install -y python-software-properties
77
add-apt-repository -y ppa:ondrej/php5
88

99
# RabbitMQ
10-
echo "deb http://www.rabbitmq.com/debian/ testing main" > /etc/apt/sources.list.d/rabbitmq.list
11-
wget http://www.rabbitmq.com/rabbitmq-signing-key-public.asc
10+
echo "deb https://www.rabbitmq.com/debian/ testing main" > /etc/apt/sources.list.d/rabbitmq.list
11+
wget https://www.rabbitmq.com/rabbitmq-signing-key-public.asc
1212
apt-key add rabbitmq-signing-key-public.asc
1313

1414
apt-get update

0 commit comments

Comments
 (0)