December 2017
Beginner to intermediate
362 pages
8h 35m
English
The following steps will help you to add reverse proxy settings to the Nginx configuration:
sudo nano /etc/nginx/sites-available/default
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
# try_files $uri $uri/ =404;
}
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
#try_files $uri $uri/ =404;
include /etc/nginx/proxy_params;
proxy_pass ...Read now
Unlock full access