Skip to content

Commit

Permalink
Fixed SSL warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
dotneft committed Jun 7, 2021
1 parent 50fe55b commit fd059f6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 3 additions & 1 deletion web-nginx-mysql/rhel/conf/etc/zabbix/nginx.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
server {
listen 8080;
listen 8080;
listen [::]:8080;

server_name zabbix;
index index.php;

Expand Down
6 changes: 2 additions & 4 deletions web-nginx-mysql/rhel/conf/etc/zabbix/nginx_ssl.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
server {
listen 8443 ssl http2;
listen 8443 ssl http2;
listen [::]:8443 ssl http2;
server_name zabbix;
server_name_in_redirect off;

Expand All @@ -15,9 +16,6 @@ server {

client_max_body_size 10M;


ssl on;
# ssl_stapling on;
ssl_certificate /etc/ssl/nginx/ssl.crt;
ssl_certificate_key /etc/ssl/nginx/ssl.key;
ssl_dhparam /etc/ssl/nginx/dhparam.pem;
Expand Down
4 changes: 3 additions & 1 deletion zabbix-appliance/rhel/conf/etc/zabbix/nginx.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
server {
listen 8080;
listen 8080;
listen [::]:8080;

server_name zabbix;
index index.php;

Expand Down
6 changes: 2 additions & 4 deletions zabbix-appliance/rhel/conf/etc/zabbix/nginx_ssl.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
server {
listen 8443 ssl http2;
listen 8443 ssl http2;
listen [::]:8443 ssl http2;
server_name zabbix;
server_name_in_redirect off;

Expand All @@ -15,9 +16,6 @@ server {

client_max_body_size 10M;


ssl on;
# ssl_stapling on;
ssl_certificate /etc/ssl/nginx/ssl.crt;
ssl_certificate_key /etc/ssl/nginx/ssl.key;
ssl_dhparam /etc/ssl/nginx/dhparam.pem;
Expand Down

0 comments on commit fd059f6

Please sign in to comment.