aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/configuring.md
diff options
context:
space:
mode:
authorDixit Patel <dixitpatel012@aol.com>2017-11-30 17:05:48 +0530
committerDixit Patel <dixitpatel012@aol.com>2017-11-30 17:05:48 +0530
commit96d17ecba8e374cd1ce4db0cee8c0dca057e3ff7 (patch)
tree9df0f92b632e93d0ee6f97e3561fe36e2507ed77 /guides/source/configuring.md
parentf7e3c686685fb89e67293440d24356f93fa34847 (diff)
downloadrails-96d17ecba8e374cd1ce4db0cee8c0dca057e3ff7.tar.gz
rails-96d17ecba8e374cd1ce4db0cee8c0dca057e3ff7.tar.bz2
rails-96d17ecba8e374cd1ce4db0cee8c0dca057e3ff7.zip
[ci skip] Updated links for uncorn which redirect & added https for nginx link
Diffstat (limited to 'guides/source/configuring.md')
-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