Modify backend to use new auth cookie format
[blerg.git] / config.h
1 #ifndef _CONFIG_H
2 #define _CONFIG_H
3
4 #define BLERG_PATH "/var/lib/blerg"
5 #define DATA_PATH "data"
6 #define HASH_TAGS_PATH "hash_tags"
7 #define REF_TAGS_PATH "ref_tags"
8 #define BASEURL "http://blerg.dominionofawesome.com/"
9 #define HTTP_BLERG_PORT 8080
10
11 #define RECORDS_PER_SEGMENT 65536
12 #define MAX_RECORD_SIZE 65535  /* No greater than 65535 */
13
14 #define MAX_TAG_LENGTH 64
15 #define MAX_TAGS_PER_RECORD 1024
16
17 #define AUTHENTICATION_TIMEOUT 3600  /* Time out the user's session after one hour */
18
19 #endif //_CONFIG_H