File tree 2 files changed +9
-3
lines changed
2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ build-nginx:
28
28
rm -f $(NGINX_SRC_DIR)/Makefile
29
29
30
30
cd $(NGINX_OUT_DIR); \
31
- rm -f ./conf/nginx.conf && ln -s $(ROOT_DIR)/nginx.conf ./conf/nginx.conf
31
+ [ -f $(ROOT_DIR)/nginx.conf ] && rm -f ./conf/nginx.conf && ln -s $(ROOT_DIR)/nginx.conf ./conf/nginx.conf || true
32
32
33
33
build : build-static
34
34
build-static : configure-static build-nginx
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ data into Snapshots.
10
10
11
11
- [ Status] ( #status )
12
12
- [ Installation] ( #installation )
13
+ - [ AppDynamics Library] ( #appdynamics-library )
13
14
- [ Configuration directives] ( #configuration-directives )
14
15
- [ ` appdynamics ` ] ( #appdynamics )
15
16
- [ ` appdynamics_controller_hostname ` ] ( #appdynamics-controller-hostname )
@@ -31,7 +32,8 @@ data into Snapshots.
31
32
- [ Design Notes] ( #design-notes )
32
33
33
34
## Status
34
- BETA (active development) - developed/tested against Nginx 1.23.4 and AppDynamics C++ SDK 22.7
35
+ BETA (active development) - developed/tested against Nginx 1.23.4 and AppDynamics C++ SDK 22.7.
36
+ * NOTE* see [ AppDynamics Library] ( #appdynamics-library ) before attempting to build.
35
37
36
38
## Installation
37
39
The ` appdynamics_ngx_module ` is not known to be affected by module
@@ -59,7 +61,11 @@ This will compile the module directly into Nginx.
59
61
60
62
### AppDynamics library
61
63
The AppDynamics C++ Agent library is currently only distributed as a dynamic library, and needs to be "installed"
62
- and available to the appdynamics_ngx_module's library path.
64
+ and available to the appdynamics_ngx_module's library path at runtime.
65
+
66
+ Licensing prevents the inclusion of the AppDynamics SDK headers in this repo. To compile this module, the headers from the SDK
67
+ must be copied into ` ./vendor/appdynamics-cpp-sdk/include/ ` .
68
+
63
69
See https://docs.appdynamics.com/appd/22.x/22.2/en/application-monitoring/install-app-server-agents/c-c++-sdk for more information.
64
70
65
71
## Configuration directives
You can’t perform that action at this time.
0 commit comments