Skip to content

Commit

Permalink
Prefer https over http
Browse files Browse the repository at this point in the history
  • Loading branch information
jdufresne committed Dec 15, 2016
1 parent 3800b8b commit bf63194
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions contrib/emperormon.ru
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ template = <<eof
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="unbit">
<link href="http://unbit.github.com/bootstrap/css/bootstrap.css" rel="stylesheet">
<link href="https://unbit.github.com/bootstrap/css/bootstrap.css" rel="stylesheet">
<style>
body {
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
}
</style>
<link href="http://unbit.github.com/bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
<link href="https://unbit.github.com/bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
</head>
<body>
Expand Down Expand Up @@ -99,8 +99,8 @@ template = <<eof
<script src="http://unbit.github.com/jquery-1.7.2.min.js" type="text/javascript"></script>
<script src="http://unbit.github.com/bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
<script src="https://unbit.github.com/jquery-1.7.2.min.js" type="text/javascript"></script>
<script src="https://unbit.github.com/bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
</body>
</html>
eof
Expand Down
8 changes: 4 additions & 4 deletions contrib/uwsgisubscribers.ru
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ template = <<eof
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="unbit">
<link href="http://unbit.github.com/bootstrap/css/bootstrap.css" rel="stylesheet">
<link href="https://unbit.github.com/bootstrap/css/bootstrap.css" rel="stylesheet">
<style>
body {
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
}
</style>
<link href="http://unbit.github.com/bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
<link href="https://unbit.github.com/bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
</head>
<body>
Expand Down Expand Up @@ -75,8 +75,8 @@ template = <<eof
<% end %>
<script src="http://unbit.github.com/jquery-1.7.2.min.js" type="text/javascript"></script>
<script src="http://unbit.github.com/bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
<script src="https://unbit.github.com/jquery-1.7.2.min.js" type="text/javascript"></script>
<script src="https://unbit.github.com/bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
</body>
</html>
eof
Expand Down
2 changes: 1 addition & 1 deletion tests/Responder.pm
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ sub getline {
}
elsif ($self->{_counter} == 4) {
$self->{_counter}++;
return "connected to http://projects.unbit.it<br/>";
return "connected to https://projects.unbit.it<br/>";
}
elsif ($self->{_counter} == 7) {
$self->{_counter}++;
Expand Down
2 changes: 1 addition & 1 deletion uwsgi.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ Gem::Specification.new do |s|
s.files = []
s.require_paths = ['.']
s.executables << 'uwsgi'
s.homepage = 'http://projects.unbit.it/uwsgi'
s.homepage = 'https://projects.unbit.it/uwsgi'
s.add_runtime_dependency 'rack'
end

0 comments on commit bf63194

Please sign in to comment.