ceph/docs/_static/nginx_pulpito

12 lines
326 B
Plaintext
Raw Normal View History

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;
}
}