Skip to content
New issue

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

correct-file #12

Merged
merged 1 commit into from
Jan 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

mod_http_cache允许使用HTTP GET请求缓存文档并使用HTTP PUT存储文档。其主要用途是从web服务器下载和缓存音频文件。

mod_http_cache只会遵循max-age缓存控制指令来确定缓存文件何时过期。如果您知道服务器上的源文件比缓存文件更新,可以使用http_remove_cache <url>来强制更新。
mod_http_cache只会遵循max-age缓存控制指令来确定缓存文件何时过期。如果您知道服务器上的源文件比缓存文件更新,可以使用`http_remove_cache <url>`来强制更新。

mod_http_cache提供了http_cache://读写文件接口。有关用法,请参见[这些示例](mod_http_cache_6587452.mdx#examples)。

Expand Down
2 changes: 1 addition & 1 deletion docs/FreeSWITCH-Explained/Modules/mod_java_3966491.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ apt-get install gcj-jdk

编辑 _java.conf.xml_ 文件,并填写您喜欢的 Java 1.5 或更高版本虚拟机库的路径。

_java.class.path_ 参数必须包含 _freeswitch.jar_,只有在不使用 JAR 文件时才需要其他路径,请继续阅读。您可以使用 jar 命令或任何您喜欢的工具自己创建 _freeswitch.jar_ 文件。所有的源文件都在 _<extracted-freeswitch-directory>/src/mod/languages/mod_java/src_ 中,用于构建所需的 _jar_。
_java.class.path_ 参数必须包含 _freeswitch.jar_,只有在不使用 JAR 文件时才需要其他路径,请继续阅读。您可以使用 jar 命令或任何您喜欢的工具自己创建 _freeswitch.jar_ 文件。所有的源文件都在 `_<extracted-freeswitch-directory>/src/mod/languages/mod_java/src_ `中,用于构建所需的 _jar_。

您可以添加任何其他选项;为了方便起见,默认情况下启用了远程调试功能。

Expand Down
Loading