-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathnginx.conf
68 lines (51 loc) · 1.13 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
worker_processes 1;
pid /run/nginx.pid;
error_log /var/log/nginx/error.log;
include /etc/nginx/modules-enabled/*.conf;
events {
worker_connections 128;
}
http {
##
# Basic Settings
##
sendfile on;
tcp_nopush on;
types_hash_max_size 2048;
##
# Disable unnecessary features
##
server_tokens off;
autoindex off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
##
# Logging Settings
##
access_log off;
error_log /var/log/nginx/error.log;
##
# Gzip Settings
##
gzip on;
server {
listen 9090;
server_name localhost;
add_header X-Frame-Options SAMEORIGIN;
add_header X-Content-Type-Options nosniff;
add_header X-XSS-Protection "1; mode=block";
root /var/www/html;
index index.html;
location / {
try_files $uri /index.html =404;
expires 1h; # Cache files for 1 hour
add_header Cache-Control "public, max-age=3600";
}
# Serve certificates from /app/codegate_volume/certs at /certificates
location /certificates/codegate_ca.crt {
alias /app/codegate_volume/certs/ca.crt;
types { application/x-x509-ca-cert crt; }
default_type application/x-x509-ca-cert;
}
}
}