Skip to content

Commit d5dc205

Browse files
committed
Fix path to stdout and stderr
1 parent f873641 commit d5dc205

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

nginx/conf.d/local.conf

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ upstream rnacentral {
66
server {
77
listen 80;
88
root /srv/rnacentral/static/;
9-
access_log stdout;
10-
error_log stderr;
9+
access_log /dev/stdout;
10+
error_log /dev/stderr;
1111

1212
location /static/ {
1313
autoindex on;
@@ -21,9 +21,9 @@ server {
2121
proxy_set_header Host $host;
2222
proxy_redirect off;
2323

24-
proxy_read_timeout 120;
25-
proxy_send_timeout 120;
26-
proxy_connect_timeout 120;
24+
proxy_read_timeout 120s;
25+
proxy_send_timeout 120s;
26+
proxy_connect_timeout 120s;
2727
}
2828

2929
error_page 500 502 503 504 /error/;

0 commit comments

Comments
 (0)