Fixed nginx conf issue
This commit is contained in:
@@ -25,10 +25,13 @@ http {
|
|||||||
auto_ssl = (require "resty.auto-ssl").new()
|
auto_ssl = (require "resty.auto-ssl").new()
|
||||||
auto_ssl:set("storage_adapter", "resty.auto-ssl.storage_adapters.redis")
|
auto_ssl:set("storage_adapter", "resty.auto-ssl.storage_adapters.redis")
|
||||||
auto_ssl:set("allow_domain", function(domain)
|
auto_ssl:set("allow_domain", function(domain)
|
||||||
|
ngx.log(ngx.ERR, "nginx.conf allow_domain", domain)
|
||||||
return ngx.ctx.toAllow
|
return ngx.ctx.toAllow
|
||||||
end)
|
end)
|
||||||
|
|
||||||
auto_ssl:set("request_domain", function(ssl, ssl_options)
|
auto_ssl:set("request_domain", function(ssl, ssl_options)
|
||||||
|
ngx.log(ngx.ERR, "nginx.conf request_domain", domain)
|
||||||
|
|
||||||
local json = require "cjson"
|
local json = require "cjson"
|
||||||
local redis = require "resty.redis"
|
local redis = require "resty.redis"
|
||||||
local socket = assert(require "socket.unix"())
|
local socket = assert(require "socket.unix"())
|
||||||
|
|||||||
Reference in New Issue
Block a user