About 5,736 results found. (Query 0.03000 seconds)
If you want to remove comments and blank lines with the vi editor, then issue global commands to delete lines that begin with # or are blank: :g/^#/d :g/^$/d Here is an example of a completed OpenConnect configuration file for CentOS 8: auth = "plain[passwd=/etc/ocserv/ocpasswd]" tcp-port = 443 udp-port = 443 run-as-user = ocserv run-as-group = ocserv socket-file = ocserv.sock chroot-dir = /var/lib/ocserv server-cert = /etc/letsencrypt/live/vpn.yyyyy.xyz/fullchain.pem server-key =...
You can set the modules path, as well as the prosody-modules directory. plugin_paths = { "/usr/lib/prosody/modules", "/dir/of/prosody-modules" } Define the modules you want to be enabled. Some of them are already enabled by default. modules_enabled { -- Generally required "roster"; "saslauth"; "tls"; "dialback"; "disco"; -- Not essential, but recommended "carbons"; "pep"; "private"; "blocklist"; "vcard4"; "vcard_legacy" -- Nice to have ...
No information is available for this page.
No information is available for this page.
No information is available for this page.
. "/" .. outname -- else -- local filename = mp.get_property("filename") -- local dir = mp.get_property("working-directory") -- path = dir .. "/" .. mp.get_property("path"):gsub(filename, outname) -- end mp . command_native_async ( { name = "subprocess" , args = { "ffmpeg" , "-ss" , string.format ( start_pos ), "-accurate_seek" , "-y" , "-i" , mp . get_property ( "path" ), "-t" , string.format ( duration ), "-c:v" , "copy" , "-c:a" , "copy" , "file:" .. outname...