We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 896b3c3 commit 79a3e28Copy full SHA for 79a3e28
config.sh
@@ -0,0 +1,23 @@
1
+#!/bin/sh
2
+
3
+ngx_path=$HOME/nginx
4
+src_path=$HOME/ngx_cpp_dev
5
6
+cd $ngx_path
7
8
+./configure \
9
+ --with-cc-opt="-g -O0" \
10
+ --add-module=$src_path/ngxpp \
11
+ --add-module=$src_path/modules/test \
12
+ --add-module=$src_path/modules/echo \
13
+ --add-module=$src_path/modules/filter \
14
+ --add-module=$src_path/modules/upstream \
15
+ --add-module=$src_path/modules/loadbalance \
16
17
+# --with-ld-opt="-lrt"
18
+# --add-module=$src_path/modules/datahook
19
+# --add-module=$src_path/modules/subrequest
20
+# --add-module=$src_path/modules/shmem
21
+# --add-module=$src_path/modules/variables
22
23
+cd -
0 commit comments