-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Directives are available in all locations * Enables writing to Repsheet * Fixes broken test
- Loading branch information
Showing
7 changed files
with
57 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
events { | ||
worker_connections 1024; | ||
worker_connections 1024; | ||
} | ||
|
||
http { | ||
server { | ||
listen 8888; | ||
server { | ||
bot_verifier_redis_host localhost; | ||
bot_verifier_redis_port 6379; | ||
bot_verifier_redis_connection_timeout 10; | ||
bot_verifier_redis_read_timeout 10; | ||
bot_verifier_redis_expiry 3600; | ||
bot_verifier_enable_repsheet on; | ||
|
||
location / { | ||
bot_verifier on; | ||
bot_verifier_redis_host localhost; | ||
bot_verifier_redis_port 6379; | ||
bot_verifier_redis_connection_timeout 10; | ||
bot_verifier_redis_read_timeout 10; | ||
bot_verifier_redis_expiry 3600; | ||
listen 8888; | ||
|
||
location / { | ||
bot_verifier on; | ||
} | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters