-
Notifications
You must be signed in to change notification settings - Fork 26
/
nginx.conf
140 lines (119 loc) · 2.71 KB
/
nginx.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
user app;
worker_processes 2;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;
env PATH;
env PORTAL_NAMESPACE;
env MONGO_LOCALHOST;
env MONGO_INTERNAL_IP;
env GCP_NETWORK_NAME;
env GCP_SUB_NETWORK_NAME;
env SECRET_KEY_BASE;
env PROD_DATABASE_PASSWORD;
env PROD_HOSTNAME;
env SENDGRID_USERNAME;
env SENDGRID_PASSWORD;
env SERVICE_ACCOUNT_KEY;
env READ_ONLY_SERVICE_ACCOUNT_KEY;
env GOOGLE_CLOUD_KEYFILE_JSON;
env FIRESTORE_CREDENTIALS;
env FIRESTORE_PROJECT;
env GOOGLE_PRIVATE_KEY;
env GOOGLE_CLIENT_EMAIL;
env GOOGLE_CLIENT_ID;
env GOOGLE_CLOUD_PROJECT;
env GOOGLE_PROJECT_NUMBER;
env OAUTH_CLIENT_ID;
env OAUTH_CLIENT_SECRET;
env SENTRY_DSN;
env GA_TRACKING_ID;
env NEMO_API_USERNAME;
env NEMO_API_PASSWORD;
env NEWRELIC_AGENT_ID;
env MIXPANEL_SECRET;
env CI;
env RAILS_LOG_TO_STDOUT;
env APP_INTERNAL_IP;
env ORCH_SMOKE_TEST;
env TZ=America/New_York;
daemon off;
include /etc/nginx/main.d/*.conf;
events {
worker_connections 768;
# multi_accept on;
}
http {
##
# Basic Settings
##
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
# server_tokens off;
# server_names_hash_bucket_size 64;
# server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
##
# Logging Settings
##
log_format custom '$proxy_add_x_forwarded_for - $remote_user [$time_local] "$request" $status $body_bytes_sent "$http_referer" "$http_user_agent"';
access_log /var/log/nginx/access.log custom;
error_log /var/log/nginx/error.log;
##
# Gzip Settings
##
gzip on;
gzip_disable "msie6";
# gzip_vary on;
gzip_proxied any;
# gzip_comp_level 6;
# gzip_buffers 16 8k;
# gzip_http_version 1.1;
# gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
##
# nginx-naxsi config
##
# Uncomment it if you installed nginx-naxsi
##
# include /etc/nginx/naxsi_core.rules;
##
# Phusion Passenger config
##
# Uncomment it if you installed passenger or passenger-enterprise
##
##
# Virtual Host Configs
##
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
##
# File Upload Settings
##
## prevent nginx from killing long-running processes (like parsing)
passenger_pool_idle_time 300;
passenger_max_pool_size 10;
passenger_min_instances 1;
}
# mail {
# # See sample authentication script at:
# # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
#
# # auth_http localhost/auth.php;
# # pop3_capabilities "TOP" "USER";
# # imap_capabilities "IMAP4rev1" "UIDPLUS";
#
# server {
# listen localhost:110;
# protocol pop3;
# proxy on;
# }
#
# server {
# listen localhost:143;
# protocol imap;
# proxy on;
# }
# }