You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.6 KiB
44 lines
1.6 KiB
"""EasyEngine Hash bucket calculate function for Nginx"""
|
|
from ee.core.fileutils import EEFileUtils
|
|
import math
|
|
import os
|
|
import fileinput
|
|
import re
|
|
import subprocess
|
|
|
|
|
|
def hashbucket(self):
|
|
# Check Nginx Hashbucket error
|
|
sub = subprocess.Popen('nginx -t', stdout=subprocess.PIPE,
|
|
stderr=subprocess.PIPE, shell=True)
|
|
output, error_output = sub.communicate()
|
|
if 'server_names_hash_bucket_size' not in str(error_output):
|
|
return True
|
|
|
|
count = 0
|
|
# Get the list of sites-availble
|
|
sites_list = os.listdir("/etc/nginx/sites-enabled/")
|
|
|
|
# Count the number of characters in site names
|
|
for site in sites_list:
|
|
count = sum([count, len(site)])
|
|
|
|
# Calculate Nginx hash bucket size
|
|
ngx_calc = math.trunc(sum([math.log(count, 2), 2]))
|
|
ngx_hash = math.trunc(math.pow(2, ngx_calc))
|
|
|
|
# Replace hashbucket in Nginx.conf file
|
|
if EEFileUtils.grep(self, "/etc/nginx/nginx.conf",
|
|
"server_names_hash_bucket_size"):
|
|
for line in fileinput.FileInput("/etc/nginx/nginx.conf", inplace=1):
|
|
if "server_names_hash_bucket_size" in line:
|
|
print("\tserver_names_hash_bucket_size {0};".format(ngx_hash))
|
|
else:
|
|
print(line, end='')
|
|
|
|
else:
|
|
EEFileUtils.searchreplace(self, '/etc/nginx/nginx.conf',
|
|
"gzip_disable \"msie6\";",
|
|
"gzip_disable \"msie6\";\n"
|
|
"\tserver_names_hash_bucket_size {0};\n"
|
|
.format(ngx_hash))
|
|
|