aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2017-12-01 08:38:10 +0900
committerGitHub <noreply@github.com>2017-12-01 08:38:10 +0900
commitea36128de7cee7a6c30daea967d7355b92ee340f (patch)
tree388c89867c9b9062600a6e368cbd107eb3405168 /guides
parent57f2d749711b8e92d3cceff312fbb333858aa664 (diff)
parent96d17ecba8e374cd1ce4db0cee8c0dca057e3ff7 (diff)
downloadrails-ea36128de7cee7a6c30daea967d7355b92ee340f.tar.gz
rails-ea36128de7cee7a6c30daea967d7355b92ee340f.tar.bz2
rails-ea36128de7cee7a6c30daea967d7355b92ee340f.zip
Merge pull request #31296 from dixitp012/configuration_update_links
[ci skip] Updated links for unicorn which redirect & added https for n…
Diffstat (limited to 'guides')
-rw-r--r--guides/source/configuring.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md
index 4bfcc1e21a..fee644d4d4 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -1005,11 +1005,11 @@ Deploying your application using a reverse proxy has definite advantages over tr
Many modern web servers can be used as a proxy server to balance third-party elements such as caching servers or application servers.
-One such application server you can use is [Unicorn](http://unicorn.bogomips.org/) to run behind a reverse proxy.
+One such application server you can use is [Unicorn](https://bogomips.org/unicorn/) to run behind a reverse proxy.
In this case, you would need to configure the proxy server (NGINX, Apache, etc) to accept connections from your application server (Unicorn). By default Unicorn will listen for TCP connections on port 8080, but you can change the port or configure it to use sockets instead.
-You can find more information in the [Unicorn readme](http://unicorn.bogomips.org/README.html) and understand the [philosophy](http://unicorn.bogomips.org/PHILOSOPHY.html) behind it.
+You can find more information in the [Unicorn readme](https://bogomips.org/unicorn/README.html) and understand the [philosophy](https://bogomips.org/unicorn/PHILOSOPHY.html) behind it.
Once you've configured the application server, you must proxy requests to it by configuring your web server appropriately. For example your NGINX config may include:
@@ -1037,7 +1037,7 @@ server {
}
```
-Be sure to read the [NGINX documentation](http://nginx.org/en/docs/) for the most up-to-date information.
+Be sure to read the [NGINX documentation](https://nginx.org/en/docs/) for the most up-to-date information.
Rails Environment Settings