Fixed nginx conf issue

This commit is contained in:
2024-08-08 08:38:51 -04:00
parent cf557f8aea
commit ee582891fa
3 changed files with 13 additions and 4 deletions
+2 -2
View File
@@ -25,12 +25,12 @@ http {
auto_ssl = (require "resty.auto-ssl").new()
auto_ssl:set("storage_adapter", "resty.auto-ssl.storage_adapters.redis")
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)
return ngx.ctx.toAllow
end)
auto_ssl:set("request_domain", function(ssl, ssl_options)
ngx.log(ngx.ERR, "nginx.conf request_domain", domain)
ngx.log(ngx.ERR, "!!!!!! nginx.conf request_domain !!!!!!!", domain)
local json = require "cjson"
local redis = require "resty.redis"
+3 -2
View File
@@ -20,10 +20,11 @@ server {
set $header_host $host;
access_by_lua '
ngx.log(ngx.ERR, "!!!!!!!!! proxy.conf !!!!!!!! ", domain)
local res = ngx.ctx.targetInfo
if not res then
ngx.log(ngx.ERR, "no host found for key ", domain)
ngx.exit(406)
ngx.log(ngx.ERR, "This should not happen", domain)
ngx.exit(499)
return false
end
+8
View File
@@ -0,0 +1,8 @@
members = ['Roisin', 'Billy', 'Joseph', 'Emily', 'Chloe']
message = "I love you {}"
for member in members:
if member == "Billy":
continue
print(message.format(member))