diff options
author | Ingela Anderton Andin <[email protected]> | 2015-04-07 10:51:04 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2015-04-07 10:51:04 +0200 |
commit | b314eeff3dd14f046a18305ccd68371108936244 (patch) | |
tree | 1eca5983ecb40ddd7a346e8055fe2780cbcaafb6 /lib/inets/test/old_httpd_SUITE.erl | |
parent | cc722af4d62d749d2a75155e91a2a1562aeb2a5a (diff) | |
download | otp-b314eeff3dd14f046a18305ccd68371108936244.tar.gz otp-b314eeff3dd14f046a18305ccd68371108936244.tar.bz2 otp-b314eeff3dd14f046a18305ccd68371108936244.zip |
inets: Remove SSI (Server Side Includes)
SSI is an old technique implemented by mod_include, that was badly
tested and not recommended to use, as having the server parse HTML
pages is a double edged sword! It can be costly for a heavily loaded
server to perform parsing of HTML pages while sending
them. Furthermore, it can be considered a security risk to have
average users executing commands in the name of the Erlang node user.
Diffstat (limited to 'lib/inets/test/old_httpd_SUITE.erl')
-rw-r--r-- | lib/inets/test/old_httpd_SUITE.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/inets/test/old_httpd_SUITE.erl b/lib/inets/test/old_httpd_SUITE.erl index 74c11f71ba..39b0b08645 100644 --- a/lib/inets/test/old_httpd_SUITE.erl +++ b/lib/inets/test/old_httpd_SUITE.erl @@ -2072,13 +2072,13 @@ create_config(Config, Access, FileName) -> "Modules mod_alias mod_htaccess mod_auth " "mod_security " "mod_responsecontrol mod_trace mod_esi " - "mod_actions mod_cgi mod_include mod_dir " + "mod_actions mod_cgi mod_dir " "mod_range mod_get " "mod_head mod_log mod_disk_log"; _ -> "Modules mod_alias mod_auth mod_security " "mod_responsecontrol mod_trace mod_esi " - "mod_actions mod_cgi mod_include mod_dir " + "mod_actions mod_cgi mod_dir " "mod_range mod_get " "mod_head mod_log mod_disk_log" end, @@ -2436,7 +2436,7 @@ create_ipv6_config(Config, FileName, Ipv6Address) -> MaxHdrAct = io_lib:format("~p", [close]), Mod_order = "Modules mod_alias mod_auth mod_esi mod_actions mod_cgi" - " mod_include mod_dir mod_get mod_head" + " mod_dir mod_get mod_head" " mod_log mod_disk_log mod_trace", SSL = |