# The [Server] section specifies options relating to the server, # as seen by the outside world [Server] # Optional: "hostname" specifies the hostname the server listens on # Default: the system's FQDN # NOTE: You probably won't need this unless you want to run the server # on "localhost". Using anything except your own hostname will probably # cause issues. # hostname = # Optional: "tcp_port" specifies the TCP port to listen on # Default: 8080 # tcp_port = 8080 # Optional: "debug" and "verbose" enable debugging output # Default: False # Set to "True" to enable, anything else will default to False # Note: 'verbose' implies 'debug' # debug = True # verbose = True # The [Files] section specifies files the server uses [Files] # "openid_dir" specifies the directory for holding OpenID information openid_dir = openids # "rules_file" specifies the file holding access rules for the server rules_file = access_policy/access_policy.n3 # "baseURI" specifies the base URI of the RDF nodes used for reasoning # This is for the default DIG-member access policy--change if necessary # Make sure to include hashes and slashes at the end, as necessary baseURI = http://dig.csail.mit.edu/data# # "policy_file" specifies the usage policy returned with the results policy_file = access_policy/air_access_policy.n3 # "keyfile" specifies the SSL key file keyfile = certs/CAkey.pem # "certfile" specifies the SSL certificate file certfile = certs/CAcert.pem # The [Stores] section specifies details of the rdflib stores [Stores] # "data_" refers to the server's data store # "log_" refers to the server's log # "_host", "_user", "_password", and "_db" refer to the approprate # MySQL parameters # "_identifier" refers to the identifier used for creating the rdflib store # e.g., in this code: # >>> store = rdflib.plugin.get('MySQL', rdflib.store.Store)("identifier") data_host = creamed-corn.mit.edu data_user = tami data_password = tami data_db = tami_data data_identifier = tami_data log_host = creamed-corn.mit.edu log_user = tami log_password = tami log_db = tami_log log_identifier = tami_log