Commit cd2e0e9e authored by Alexandr Dzehil's avatar Alexandr Dzehil 😎

Merge branch 'test-deploy' into 'dev'

Delete servers config

See merge request !1
parents 4350f4fd ce7201ba
#!/bin/bash
sudo service cp_video_gunicorn restart
[Unit]
Description=Gunicorn instance to serve cp_video
[Service]
User=django
WorkingDirectory=/home/django/clutchpoints_projects/cp_video
ExecStart=/usr/local/bin/gunicorn --config server_configs/production/gunicornd.py cp_video.wsgi:application
[Install]
WantedBy=multi-user.target
"""gunicorn WSGI server configuration."""
import os
from multiprocessing import cpu_count
PROJECT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
LOGS_DIR = os.path.join(PROJECT_DIR, 'logs')
if not os.path.exists(LOGS_DIR):
os.makedirs(LOGS_DIR)
def max_workers():
return cpu_count() * 2 + 1
bind = '127.0.0.1:9001'
timeout = 60
max_requests = 1000
worker_class = 'gevent'
workers = max_workers()
accesslog = os.path.join(LOGS_DIR, 'access.log')
errorlog = os.path.join(LOGS_DIR, 'error.log')
upstream cp_cp_video_gunicorn {
server 127.0.0.1:9001 fail_timeout=0;
}
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
server_name 165.227.118.167;
root /usr/share/nginx/html;
index index.html index.htm;
# your Django project's static files - amend as required
location /static {
alias /home/django/clutchpoints_projects/cp_video/static;
}
location / {
proxy_send_timeout 60;
proxy_read_timeout 60;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_redirect off;
proxy_pass http://cp_video_gunicorn;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment