Update README.md

This commit is contained in:
Matthew Scragg 2014-09-09 15:46:41 -05:00
부모 507380f5cd
커밋 d941562980
1개의 변경된 파일20개의 추가작업 그리고 19개의 파일을 삭제

파일 보기

@ -48,28 +48,29 @@ sudo bash install.sh
Create a file called realms.conf in /etc/nginx/conf.d
```/etc/nginx/conf.d/realms.conf```
```
/etc/nginx/conf.d/realms.conf
```
Put the following sample configuration in that file.
```
server {
listen 80;
# Your domain here
server_name wiki.example.org;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_pass http://127.0.0.1:5000/;
proxy_redirect off;
}
}
```
server {
listen 80;
# Your domain here
server_name wiki.example.org;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_pass http://127.0.0.1:5000/;
proxy_redirect off;
}
}
Test Nginx config
```sudo nginx -t```