Update README.md

This commit is contained in:
Quentin McGaw
2018-02-21 11:56:42 -05:00
committed by GitHub
parent 64447983cf
commit a5a169f64d

View File

@@ -86,14 +86,14 @@ You have to use another container acting as a Reverse Proxy such as Nginx.
2. I create the following Nginx configuration file *nginx.conf*: 2. I create the following Nginx configuration file *nginx.conf*:
``` ```
user nginx; user nginx;
worker_processes 1; worker_processes 1;
error_log /var/log/nginx/error.log warn; error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid; pid /var/run/nginx.pid;
events { events {
worker_connections 1024; worker_connections 1024;
} }
http { http {
include /etc/nginx/mime.types; include /etc/nginx/mime.types;
default_type application/octet-stream; default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" ' log_format main '$remote_addr - $remote_user [$time_local] "$request" '