-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c4ef70c
commit 9079c5b
Showing
4 changed files
with
10 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,31 @@ | ||
user build; | ||
worker_processes 1; | ||
|
||
env OPENSSL_ALLOW_PROXY_CERTS=1; | ||
env X509_VOMS_DIR=/vomsdir; | ||
|
||
error_log /home/build/local/openresty/nginx/logs/error.log warn; | ||
|
||
events { | ||
worker_connections 1024; | ||
} | ||
|
||
http { | ||
|
||
include /home/build/local/openresty/nginx/conf/mime.types; | ||
include mime.types; | ||
default_type application/octet-stream; | ||
|
||
resolver 127.0.0.11 ipv6=off; | ||
|
||
log_format storm '$time_iso8601 [$request_id] $remote_addr - $remote_user "$request" <$upstream_response_time> ' | ||
'$ssl_protocol/$ssl_cipher ' | ||
'"$ssl_client_s_dn" ' | ||
'[$voms_fqans] ' | ||
'$status $body_bytes_sent "$http_referer" ' | ||
'"$http_user_agent" "$http_x_forwarded_for"'; | ||
|
||
access_log /home/build/local/openresty/nginx/logs/access.log storm; | ||
access_log /var/log/nginx/access.lo storm; | ||
|
||
sendfile on; | ||
#tcp_nopush on; | ||
|
||
keepalive_timeout 65; | ||
|
||
#gzip on; | ||
|
||
client_max_body_size 10000m; | ||
|
||
include /etc/nginx/conf.d/*.conf; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters