We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
At httpd.conf, we might have different <Location> groups that overlap with each other:
httpd.conf
<Location>
<Location /python_apps/app_1> WasmModule /var/www/modules/python3.11 </Location> <Location /python_apps/app_2> WasmModule /var/www/modules/python3.12 </Location> <Location /python_apps> WasmModule /var/www/modules/python3.11 </Location>
The latest <Location> group above will shadow the other more specific configurations.
This can be solved by adding support for merge configurations in mod_wasm.c.
mod_wasm.c
The text was updated successfully, but these errors were encountered:
No branches or pull requests
At
httpd.conf
, we might have different<Location>
groups that overlap with each other:The latest
<Location>
group above will shadow the other more specific configurations.This can be solved by adding support for merge configurations in
mod_wasm.c
.The text was updated successfully, but these errors were encountered: