-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnginx.conf
125 lines (101 loc) · 3.55 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
user www-data;
worker_processes 1;
pid /run/nginx.pid;
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
##
access_log /var/log/nginx/access.log;
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 $
##
# nginx-naxsi config
##
# Uncomment it if you installed nginx-naxsi
##
#include /etc/nginx/naxsi_core.rules;
##
# nginx-passenger config
##
# Uncomment it if you installed nginx-passenger
##
#passenger_root /usr;
#passenger_ruby /usr/bin/ruby;
##
# Virtual Host Configs
##
include /etc/nginx/conf.d/*.conf;
#include /etc/nginx/sites-enabled/*;
#####CONFIGURATION FOR SALES ENGINEER EXERCISE FOLLOWS#####
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
location / {
#Check if incoming request is from on of these mobile browsers.
#If so, redirect to 403 Forbidden.
if ($http_user_agent ~* "(acer\ s100|android|archos5|blackberry9500|
blackberry9530|blackberry9550|blackberry\ 9800|
cupcake|docomo\ ht\-03a|dream|htc\ hero|htc\ magic|
htc_dream|htc_magic|incognito|ipad|iphone|ipod|
kindle|lg\-gw620|liquid\ build|maemo|mot\-mb200|
mot\-mb300|nexus\ one|nokia|opera\ mini|samsung\-s8000|
series60.*webkit|series60/5\.0|sonyericssone10|
sonyericssonu20|sonyericssonx10|t\-mobile\ mytouch\ 3g|
t\-mobile\ opal|tattoo|webmate|webos)") {
return 403;
break;
}
#Deny Distil VPN server
deny 192.225.213.20;
#Proxy others to distilnetworks.com
proxy_pass http://www.distilnetworks.com;
}
}
}
#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;
# }
#}