new sslproxy xai cli commands for build, deploy, rollback

This commit is contained in:
2020-05-30 09:43:40 -04:00
parent 10b5a1e012
commit 73ad921e3b
27 changed files with 482 additions and 34 deletions

View File

@@ -2,7 +2,7 @@
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
error_log /proc/self/fd/2 info;
pid /var/run/nginx.pid;
@@ -19,7 +19,7 @@ http {
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
access_log /proc/self/fd/2 main;
sendfile on;
#tcp_nopush on;
@@ -28,5 +28,14 @@ http {
#gzip on;
server {
#listen 80 default_server;
listen 443 default_server;
ssl_certificate /etc/letsencrypt/live/xai-corp.net/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/xai-corp.net/privkey.pem;
return 421;
}
include /etc/nginx/conf.d/*.conf;
}