10 lines
317 B
Plaintext
10 lines
317 B
Plaintext
access_log /var/log/nginx/ckan-datapusher.access.log;
|
|
error_log /var/log/nginx/ckan-datapusher.error.log;
|
|
|
|
location / {
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
proxy_set_header X-Forwarded-Host $host:$server_port;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
proxy_pass http://127.0.0.1:9004;
|
|
}
|