a porta 80 está sendo redirecionada, não acessível, exceto na rede local

1

Eu sei que isso é provavelmente algo muito simples, mas eu não sou exatamente um profissional no Nginx ou Linux ainda.

Eu tenho uma rede Wordpress MU configurada para a porta 80 (posso acessar isso em my.site na LAN)

Eu tenho o phpmyadmin na porta 80 em meu / etc / hosts para acessar o link por isso só é acessível na máquina local

Emby Server também foi instalado para ir para a porta 8096 (eu posso acessar esta LAN ou WAN) Webmin é instalado na porta 10000 (eu posso acessar esta LAN e WAN)

Se eu for ao my.site a partir da WAN, a página do servidor emby aparecerá onde o site do WP deve estar. Se eu desinstalar o emby-server, recebo ERR_CONNECTION_REFUSED

no entanto, se eu acessar my.site de dentro da minha rede, o site wordpress carrega, independentemente de o Emby estar instalado ou não.

informações adicionais

nginx.conf

user www-data;
worker_processes auto;
pid /run/nginx.pid;

events {
    worker_connections 768;
    # multi_accept on;
}

http {

    ##
    # Basic Settings
    ##

    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;
    keepalive_timeout 65;
    types_hash_max_size 2048;
    # server_tokens off;

    # server_names_hash_bucket_size 64;
    # server_name_in_redirect off;

    include /etc/nginx/mime.types;
    default_type application/octet-stream;

    ##
    # SSL Settings
    ##

    ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
    ssl_prefer_server_ciphers on;

    ##
    # Logging Settings
    ##

    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;

    ##
    # Gzip Settings
    ##

    gzip on;
    gzip_disable "msie6";

    # gzip_vary on;
    # gzip_proxied any;
    # gzip_comp_level 6;
    # gzip_buffers 16 8k;
    # gzip_http_version 1.1;
    # gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;

    ##
    # Virtual Host Configs
    ##

    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}

# nginx configuration
#location / {
#rewrite ^/([_0-9a-zA-Z- ]+/)?wp-admin$ /$1wp-admin/ redirect;
#if (-e $request_filename){
#rewrite ^/([_0-9a-zA-Z- ]+/)?(wp-(content|admin|includes.*) /$2 break;
#}
#rewrite ^/([_0-9a-zA-Z- ]+/)?(.*\.php$ /$2 break;
#rewrite ^(.*)$ /index.php break;
#}

#mail {
#   # See sample authentication script at:
#   # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
# 
#   # auth_http localhost/auth.php;
#   # pop3_capabilities "TOP" "USER";
#   # imap_capabilities "IMAP4rev1" "UIDPLUS";
# 
#   server {
#       listen     localhost:110;
#       protocol   pop3;
#       proxy      on;
#   }
# 
#   server {
#       listen     localhost:143;
#       protocol   imap;
#       proxy      on;
#   }
#}

/ etc / nginx / sites-enabled / default

server {
        listen       80;
        server_name  my.site;
        root /var/www/my.site/public/;

        location / {
                try_files $uri $uri/ =404;
    }

        index index.php index.html;
        error_page 404 /404.html;
        error_page 500 502 503 504 /50x.html;

        location = /50x.html {
                root /var/www/html;
        }

        location ~ \.php$ {
                try_files $uri =404;
                fastcgi_pass unix:/var/run/php5-fpm.sock;
                fastcgi_index index.php;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                include fastcgi_params;
        }
}
server {
        listen       80;
        server_name  phpmyadmin;
        root /usr/share/phpmyadmin/;
        index index.php index.html;

        location / {
                try_files $uri $uri/ =404;
        }

        error_page 404 /404.html;
        error_page 500 502 503 504 /50x.html;

        location = /50x.html {
                root /var/www/html;
        }

        location ~ \.php$ {
                try_files $uri =404;
                fastcgi_pass unix:/var/run/php5-fpm.sock;
                fastcgi_index index.php;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                include fastcgi_params;
        }
}

informações solicitadas

$ sudo iptables -L
Chain INPUT (policy ACCEPT)
target   prot opt source     destination

Chain FORWARD (policy ACCEPT)
target   prot opt source     destination

Chain OUTPUT (policy ACCEPT)
target   prot opt source     destination
$
    
por Jeffrey Becker 21.12.2015 / 02:11

1 resposta

0

Não tenho IDEA porque, mas a adição de uma regra de firewall para o 8096 resolveu o problema.

Agora posso acessar minha instalação do WP em my.site e meu mediabrowser em my.site:8096

    
por 21.12.2015 / 03:32