You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently (commit 00eef4c at the time of this writing), the adapter doesn't completely handle include directive. There's primitive support for the directive, which is why it is not documented as supported. Big part of the reason is due to difficulty in resolution of the absolute path of the file to be included. The resolution problem should be easy to solve now using the https://github.com/hairyhenderson/go-which project and manipulating the PATH env var within the scope of the adapter.
The text was updated successfully, but these errors were encountered:
The adapter could receive the file from various sources, e.g. command line or API. Config received through the command line will receive the file name which was passed to Caddy, which will subsequently pass it to the Adapt method via the options parameter, see:
Currently (commit 00eef4c at the time of this writing), the adapter doesn't completely handle
include
directive. There's primitive support for the directive, which is why it is not documented as supported. Big part of the reason is due to difficulty in resolution of the absolute path of the file to be included. The resolution problem should be easy to solve now using the https://github.com/hairyhenderson/go-which project and manipulating thePATH
env var within the scope of the adapter.The text was updated successfully, but these errors were encountered: