908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
|
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
|
-
-
+
+
|
static void trust_location_usable(const char *zPath, const char **pzStore){
if( *pzStore!=0 ) return;
if( file_isdir(zPath, ExtFILE)>0 ) *pzStore = zPath;
}
#endif /* FOSSIL_ENABLE_SSL */
/*
** COMMAND: tls-config* abbreviated-subcommands
** COMMAND: ssl-config abbreviated-subcommands
** COMMAND: tls-config* abbrv-subcom
** COMMAND: ssl-config abbrv-subcom
**
** Usage: %fossil ssl-config [SUBCOMMAND] [OPTIONS...] [ARGS...]
**
** This command is used to view or modify the TLS (Transport Layer
** Security) configuration for Fossil. TLS (formerly SSL) is the
** encryption technology used for secure HTTPS transport.
**
|