Skip to content

Commit 2634329

Browse files
committed
加入基本结构
1 parent 31364e7 commit 2634329

File tree

4 files changed

+130
-0
lines changed

4 files changed

+130
-0
lines changed

VeryNginx/lua_script/on_access.lua

Whitespace-only changes.

VeryNginx/lua_script/on_log.lua

Whitespace-only changes.

VeryNginx/lua_script/on_rewrite.lua

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

nginx.conf

+129
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
2+
#user nobody;
3+
worker_processes 1;
4+
5+
#error_log logs/error.log;
6+
#error_log logs/error.log notice;
7+
#error_log logs/error.log info;
8+
9+
#pid logs/nginx.pid;
10+
11+
12+
events {
13+
worker_connections 1024;
14+
}
15+
16+
17+
http {
18+
include mime.types;
19+
default_type application/octet-stream;
20+
21+
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
22+
# '$status $body_bytes_sent "$http_referer" '
23+
# '"$http_user_agent" "$http_x_forwarded_for"';
24+
25+
#access_log logs/access.log main;
26+
27+
sendfile on;
28+
#tcp_nopush on;
29+
30+
#keepalive_timeout 0;
31+
keepalive_timeout 65;
32+
33+
#gzip on;
34+
35+
lua_package_path '/opt/VeryNginx/VeryNginx/lua_script/?.lua;;';
36+
lua_package_cpath '/opt/VeryNginx/VeryNginx/lua_script/?.so;;';
37+
lua_code_cache off;
38+
39+
lua_shared_dict lua_lock 1m;
40+
lua_shared_dict summary 10m;
41+
lua_shared_dict score_firewall 10m;
42+
43+
rewrite_by_lua_file /opt/VeryNginx/VeryNginx/lua_script/on_rewrite.lua;
44+
access_by_lua_file /opt/VeryNginx/VeryNginx/lua_script/on_access.lua;
45+
log_by_lua_file /opt/VeryNginx/VeryNginx/lua_script/on_log.lua;
46+
47+
server {
48+
listen 80;
49+
server_name localhost;
50+
51+
#charset koi8-r;
52+
53+
#access_log logs/host.access.log main;
54+
55+
location / {
56+
root html;
57+
index index.html index.htm;
58+
}
59+
60+
#error_page 404 /404.html;
61+
62+
# redirect server error pages to the static page /50x.html
63+
#
64+
error_page 500 502 503 504 /50x.html;
65+
location = /50x.html {
66+
root html;
67+
}
68+
69+
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
70+
#
71+
#location ~ \.php$ {
72+
# proxy_pass http://127.0.0.1;
73+
#}
74+
75+
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
76+
#
77+
#location ~ \.php$ {
78+
# root html;
79+
# fastcgi_pass 127.0.0.1:9000;
80+
# fastcgi_index index.php;
81+
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
82+
# include fastcgi_params;
83+
#}
84+
85+
# deny access to .htaccess files, if Apache's document root
86+
# concurs with nginx's one
87+
#
88+
#location ~ /\.ht {
89+
# deny all;
90+
#}
91+
}
92+
93+
94+
# another virtual host using mix of IP-, name-, and port-based configuration
95+
#
96+
#server {
97+
# listen 8000;
98+
# listen somename:8080;
99+
# server_name somename alias another.alias;
100+
101+
# location / {
102+
# root html;
103+
# index index.html index.htm;
104+
# }
105+
#}
106+
107+
108+
# HTTPS server
109+
#
110+
#server {
111+
# listen 443 ssl;
112+
# server_name localhost;
113+
114+
# ssl_certificate cert.pem;
115+
# ssl_certificate_key cert.key;
116+
117+
# ssl_session_cache shared:SSL:1m;
118+
# ssl_session_timeout 5m;
119+
120+
# ssl_ciphers HIGH:!aNULL:!MD5;
121+
# ssl_prefer_server_ciphers on;
122+
123+
# location / {
124+
# root html;
125+
# index index.html index.htm;
126+
# }
127+
#}
128+
129+
}

0 commit comments

Comments
 (0)