You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-8Lines changed: 10 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ To solve this issue, we created the Flagship nginx module for one of the most po
14
14
At the web server level, this allows to determine which feature will be utilized by each visitor using Go wrapper for C, so that we can perform feature management in web sever level.
15
15
As a result, the server can respond with a cached version of the proper variation using table key/value provided by nginx, allowing regular caching schemes to function normally.
16
16
17
-
In brief, we introduce web experimentation at the web server level with these new modules.
17
+
In brief, we introduce web experimentation at the web server level with this new module.
18
18
This is a new level that sits in between the front-end and the nginx web server.
19
19
20
20
## Usage
@@ -33,14 +33,16 @@ The idea is to store the flag combination in cache table as a key, that refer to
33
33
34
34
There are 3 ways to install your nginx module
35
35
36
-
**Warning** all these ways require to have the file libflagship.so in your system at this exact path:
36
+
**Warning**
37
+
38
+
- All these ways require to have the file libflagship.so in your system at this exact path:
37
39
38
40
```
39
41
/usr/local/nginx/sbin/
40
42
```
41
43
42
-
**Warning** In this case, the `load_module` directive should be used in nginx.conf to load the module.
43
-
For instance, in our case it's:
44
+
- In this case, the `load_module` directive should be used in nginx.conf to load the module.
45
+
For instance, in our case it's:
44
46
45
47
```
46
48
load_module modules/ngx_http_fs_sdk_module.so;
@@ -53,13 +55,13 @@ To build the flagship module share object file you have to download the nginx so
53
55
To link statically against nginx, cd to nginx source directory and execute:
0 commit comments