Project

General

Profile

root / trunk / src / haizea / common / defaults.py @ 632

1
import os.path
2

    
3

    
4
CONFIG_LOCATIONS = ["/etc/haizea.conf",
5
                            os.path.expanduser("~/.haizea/haizea.conf")]
6

    
7
DAEMON_PIDFILE = "/var/tmp/haizea.pid"
8

    
9
RPC_SERVER = "localhost"
10
RPC_PORT = 42493
11
RPC_URI = "http://%s:%i" % (RPC_SERVER, RPC_PORT)
12

    
13
OPENNEBULA_RPC_PORT = 2633