Fixed nginx conf issue
This commit is contained in:
@@ -25,12 +25,11 @@ 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)
|
ngx.log(ngx.ERR, "!!!!!!!! nginx.conf allow_domain !!!!!!!!!! ", domain, ngx.ctx.toAllow)
|
||||||
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"
|
||||||
@@ -38,6 +37,8 @@ http {
|
|||||||
|
|
||||||
local domain, err = ssl.server_name()
|
local domain, err = ssl.server_name()
|
||||||
|
|
||||||
|
ngx.log(ngx.ERR, "!!!!!! nginx.conf request_domain !!!!!!!", domain)
|
||||||
|
|
||||||
local function connect(path)
|
local function connect(path)
|
||||||
assert(socket:settimeout(.1))
|
assert(socket:settimeout(.1))
|
||||||
local status,err = pcall(function() assert(socket:connect(path)) end)
|
local status,err = pcall(function() assert(socket:connect(path)) end)
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ server {
|
|||||||
local res = ngx.ctx.targetInfo
|
local res = ngx.ctx.targetInfo
|
||||||
if not res then
|
if not res then
|
||||||
ngx.log(ngx.ERR, "This should not happen", domain)
|
ngx.log(ngx.ERR, "This should not happen", domain)
|
||||||
ngx.exit(499)
|
ngx.exit(406)
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user