Skip to content

Commit

Permalink
Switch to https for phoenixframework.org website (phoenixframework#3599)
Browse files Browse the repository at this point in the history
  • Loading branch information
spk authored and Gazler committed Nov 1, 2019
1 parent 85ecf19 commit e37c47d
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

## Getting started

See the official site at http://www.phoenixframework.org/
See the official site at https://www.phoenixframework.org/

Install the latest version of Phoenix by following the instructions at https://hexdocs.pm/phoenix/installation.html#phoenix

Expand Down
2 changes: 1 addition & 1 deletion assets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"type": "git",
"url": "git://github.com/phoenixframework/phoenix.git"
},
"author": "Chris McCord <[email protected]> (http://www.phoenixframework.org)",
"author": "Chris McCord <[email protected]> (https://www.phoenixframework.org)",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
Expand Down
2 changes: 1 addition & 1 deletion guides/deployment/heroku.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Our main goal for this guide is to get a Phoenix application running on Heroku.
Heroku is a great platform and Elixir performs well on it. However, you may run into limitations if you plan to leverage advanced features provided by Elixir and Phoenix, such as:

- Connections are limited.
- Heroku [limits the number of simultaneous connections](https://devcenter.heroku.com/articles/http-routing#request-concurrency) as well as the [duration of each connection](https://devcenter.heroku.com/articles/limits#http-timeouts). It is common to use Elixir for real-time apps which need lots of concurrent, persistent connections, and Phoenix is capable of [handling over 2 million connections on a single server](http://www.phoenixframework.org/blog/the-road-to-2-million-websocket-connections).
- Heroku [limits the number of simultaneous connections](https://devcenter.heroku.com/articles/http-routing#request-concurrency) as well as the [duration of each connection](https://devcenter.heroku.com/articles/limits#http-timeouts). It is common to use Elixir for real-time apps which need lots of concurrent, persistent connections, and Phoenix is capable of [handling over 2 million connections on a single server](https://www.phoenixframework.org/blog/the-road-to-2-million-websocket-connections).

- Distributed clustering is not possible.
- Heroku [firewalls dynos off from one another](https://devcenter.heroku.com/articles/dynos#networking). This means things like [distributed Phoenix channels](https://dockyard.com/blog/2016/01/28/running-elixir-and-phoenix-projects-on-a-cluster-of-nodes) and [distributed tasks](https://elixir-lang.org/getting-started/mix-otp/distributed-tasks.html) will need to rely on something like Redis instead of Elixir's built-in distribution.
Expand Down
2 changes: 1 addition & 1 deletion installer/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ defmodule Phx.New.MixProject do

source_url: @url,
docs: docs(),
homepage_url: "http://www.phoenixframework.org",
homepage_url: "https://www.phoenixframework.org",
description: """
Phoenix framework project generator.
Expand Down
2 changes: 1 addition & 1 deletion installer/templates/phx_single/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Ready to run in production? Please [check our deployment guides](https://hexdocs

## Learn more

* Official website: http://www.phoenixframework.org/
* Official website: https://www.phoenixframework.org/
* Guides: https://hexdocs.pm/phoenix/overview.html
* Docs: https://hexdocs.pm/phoenix
* Mailing list: http://groups.google.com/group/phoenix-talk
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Ready to run in production? Please [check our deployment guides](https://hexdocs

## Learn more

* Official website: http://www.phoenixframework.org/
* Official website: https://www.phoenixframework.org/
* Guides: https://hexdocs.pm/phoenix/overview.html
* Docs: https://hexdocs.pm/phoenix
* Mailing list: http://groups.google.com/group/phoenix-talk
Expand Down
2 changes: 1 addition & 1 deletion installer/templates/phx_web/templates/layout/app.html.eex
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<li><a href="https://hexdocs.pm/phoenix/overview.html">Get Started</a></li>
</ul>
</nav>
<a href="http://phoenixframework.org/" class="phx-logo">
<a href="https://phoenixframework.org/" class="phx-logo">
<img src="<%%= Routes.static_path(@conn, "/images/phoenix.png") %>" alt="Phoenix Framework Logo"/>
</a>
</section>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"type": "git",
"url": "git://github.com/phoenixframework/phoenix.git"
},
"author": "Chris McCord <[email protected]> (http://www.phoenixframework.org)",
"author": "Chris McCord <[email protected]> (https://www.phoenixframework.org)",
"files": [
"README.md",
"LICENSE.md",
Expand Down

0 comments on commit e37c47d

Please sign in to comment.