ceph/docs/reference/nginx_pulpito
Zack Cerza a19e1cf63c Add reference configs
Signed-off-by: Zack Cerza <zack@redhat.com>
2014-11-25 15:10:38 -07:00

12 lines
326 B
Plaintext

server {
server_name pulpito.example.com;
proxy_send_timeout 600;
proxy_connect_timeout 240;
location / {
proxy_pass http://pulpito.example.com:8081/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}