Eu sou novo no nginx. Então, eu sei que precisarei postar informações adicionais. Desculpas por começar com uma falta de informação.
Eu tenho meu primeiro servidor nginx configurado com domínios virtuais. O domínio do problema é um subdomínio com DNS (registro A) configurado em servidores de nomes externos.
Quando eu insiro o nome de domínio, sou direcionado para o IP do meu servidor, mas por meio de https. A conexão é recusada. Aqui está o meu arquivo .conf para o domínio:
server {
listen *:80;
server_name dev.imageweaversmarketing.com ;
root /var/www/dev.imageweaversmarketing.com/web;
index index.html index.htm index.php index.cgi index.pl index.xhtml;
error_log /var/log/ispconfig/httpd/dev.imageweaversmarketing.com/error.log;
access_log /var/log/ispconfig/httpd/dev.imageweaversmarketing.com/access.log combined;
location ~ /\. {
deny all;
access_log off;
log_not_found off;
}
location = /favicon.ico {
log_not_found off;
access_log off;
}
location = /robots.txt {
allow all;
log_not_found off;
access_log off;
}
location /stats/ {
index index.html index.php;
auth_basic "Members Only";
auth_basic_user_file /var/www/clients/client0/web2/web/stats/.htpasswd_stats;
}
location ^~ /awstats-icon {
alias /usr/share/awstats/icon;
}
location = /favicon.ico {
log_not_found off;
access_log off;
}
location = /robots.txt {
allow all;
log_not_found off;
access_log off;
}
location /stats/ {
index index.html index.php;
auth_basic "Members Only";
auth_basic_user_file /var/www/clients/client0/web2/web/stats/.htpasswd_stats;
}
location ^~ /awstats-icon {
alias /usr/share/awstats/icon;
}
location ~ \.php$ {
try_files /cdb8ed7968b49bb25b7be537a21b99cb.htm @php;
}
location @php {
try_files $uri =404;
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/var/lib/php5-fpm/web2.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_intercept_errors on;
}
}
Alguém pode ajudar?
Tags nginx