diff options
author | Matthew Holt <mholt@users.noreply.github.com> | 2020-02-06 18:46:52 -0700 |
---|---|---|
committer | Matthew Holt <mholt@users.noreply.github.com> | 2020-02-06 18:46:52 -0700 |
commit | 8b28c36d480070c8cf954cb27bec3b44bd7d12ca (patch) | |
tree | 4219adc87173ea3af7603e36e8ef44bb8a791f40 /modules/caddyhttp/starlarkmw/tools/gen | |
parent | 4a07a5d41e0f54d1a1ec998b9d956ccf2a880d90 (diff) |
Remove Starlark, for now
This is temporary as we prepare for a stable v2 release. We don't want
to make promises we don't know we can keep, and the Starlark integration
deserves much more focused attention which resources and funding do not
currently permit. When the project is financially stable, I will be able
to revisit this properly and add flexible, robust Starlark scripting
support to Caddy 2.
Diffstat (limited to 'modules/caddyhttp/starlarkmw/tools/gen')
-rw-r--r-- | modules/caddyhttp/starlarkmw/tools/gen/example.star | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/modules/caddyhttp/starlarkmw/tools/gen/example.star b/modules/caddyhttp/starlarkmw/tools/gen/example.star deleted file mode 100644 index 6ccab32..0000000 --- a/modules/caddyhttp/starlarkmw/tools/gen/example.star +++ /dev/null @@ -1,40 +0,0 @@ -# any module that provisions resources -proxyConfig = { - 'load_balance_type': 'round_robin', - 'upstreams': [ - { - 'host': 'http://localhost:8080', - 'circuit_breaker': { - 'type': 'status_ratio', - 'threshold': 0.5 - } - }, - { - 'host': 'http://localhost:8081' - } - ] -} - -sfConfig = { - 'root': '/Users/dev/Desktop', - 'browse': {}, -} - -proxy = loadResponder('reverse_proxy', proxyConfig) -static_files = loadResponder('file_server', sfConfig) - -def setup(r): - # create some middlewares specific to this request - mid = [] - - if r.query.get('log') == 'true': - logMid = loadMiddleware('log', {'file': 'access.log'}) - mid.append(logMid) - - execute(mid) - -def serveHTTP(w, r): - if r.url.find('static') > 0: - return static_files - - return proxy |