forked from v55448330/lazy-balancer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodels.py
32 lines (29 loc) · 1.39 KB
/
models.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from __future__ import unicode_literals
from django.db import models
# Create your models here.
class upstream_config(models.Model):
status = models.BooleanField(default=False)
address = models.CharField(max_length=64,null=True)
port = models.IntegerField(null=False)
weight = models.IntegerField(null=False)
max_fails = models.IntegerField()
fail_timeout = models.IntegerField()
class proxy_config(models.Model):
config_id = models.CharField(max_length=64,null=True)
protocols = models.BooleanField(default=False)
proxy_name = models.CharField(max_length=128,null=True)
status = models.BooleanField(default=False)
listen = models.IntegerField(null=False)
server_name = models.CharField(max_length=128,null=True)
access_log = models.CharField(max_length=128,null=True)
error_log = models.CharField(max_length=128,null=True)
ssl_cert = models.TextField(null=True)
ssl_cert_path = models.CharField(max_length=128,null=True)
ssl_key = models.TextField(null=True)
ssl_key_path = models.CharField(max_length=128,null=True)
description = models.TextField(null=True)
balancer_type = models.CharField(max_length=64,null=True)
host = models.CharField(max_length=64,null=True)
check_type = models.CharField(max_length=64,null=True)
update_time = models.FloatField(null=False)
upstream_list = models.ManyToManyField(upstream_config)