You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
826 B
C

#ifndef CONF_H
#define CONF_H
#include <sys/types.h>
#include "slog.h"
struct conf {
/* connection to Redis */
char *redis_host;
int redis_port;
char *redis_auth;
/* HTTP server interface */
char *http_host;
int http_port;
int http_threads;
size_t http_max_request_size;
/* pool size, one pool per worker thread */
int pool_size_per_thread;
/* daemonize process, off by default */
int daemonize;
char *pidfile;
/* WebSocket support, off by default */
int websockets;
/* database number */
int database;
/* ACL */
struct acl *perms;
/* user/group */
uid_t user;
gid_t group;
/* Logging */
char *logfile;
log_level verbosity;
/* Request to serve on “/” */
char *default_root;
};
struct conf *
conf_read(const char *filename);
void
conf_free(struct conf *conf);
#endif /* CONF_H */