ShawnAI commited on
Commit
9af3232
1 Parent(s): 0fef4e8

Create conf/nginx.conf

Browse files
Files changed (1) hide show
  1. conf/nginx.conf +129 -0
conf/nginx.conf ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #user nobody;
2
+ worker_processes 1;
3
+
4
+ #error_log logs/error.log;
5
+ #error_log logs/error.log notice;
6
+ #error_log logs/error.log info;
7
+
8
+ #pid logs/nginx.pid;
9
+ pid /tmp/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
+ server {
36
+ listen 8888;
37
+ server_name localhost;
38
+
39
+ #charset koi8-r;
40
+
41
+ #access_log logs/host.access.log main;
42
+
43
+ location / {
44
+ root html;
45
+ index index.html index.htm;
46
+ }
47
+
48
+ location ~*^/(rfc|errata)/ {
49
+ add_header X-Frame-Options "SAMEORIGIN";
50
+ add_header Access-Control-Allow-Origin * always;
51
+ add_header Access-Control-Allow-Headers *;
52
+ add_header Access-Control-Allow-Methods "GET, POST, PUT, OPTIONS";
53
+ add_header Access-Control-Allow-Credentials true;
54
+ proxy_ssl_server_name on;
55
+ proxy_pass https://www.rfc-editor.org;
56
+ }
57
+
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
+ }