OwnCloud nginx配置

OwnCloud nginx配置,nginx,ubuntu-16.04,owncloud,Nginx,Ubuntu 16.04,Owncloud,我正试图为我的主服务器需求配置nginx,但我遇到了一些问题 以下是我使用的配置: upstream php-handler { server 127.0.0.1:9000; #server unix:/var/run/php5-fpm.sock; } server { listen 80 default_server; listen [::]:80 default_server; root /var/www/html; # Add inde

我正试图为我的主服务器需求配置nginx,但我遇到了一些问题

以下是我使用的配置:

upstream php-handler {
    server 127.0.0.1:9000;
    #server unix:/var/run/php5-fpm.sock;
}

server {
    listen 80 default_server;
    listen [::]:80 default_server;

    root /var/www/html;

    # Add index.php to the list if you are using PHP
    index index.php index.nginx-debian.html ;

    server_name _;

    location / {
        # First attempt to serve request as file, then
        # as directory, then fall back to displaying a 404.
        try_files $uri $uri/ =404;
    }

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~ \.php$ {
        include snippets/fastcgi-php.conf;

        # With php7.0-cgi alone:
        #fastcgi_pass 127.0.0.1:9000;
        # With php7.0-fpm:
        fastcgi_pass unix:/run/php/php7.0-fpm.sock;
    }
}



server {
    listen 80;
    server_name owncloud.my.server.name.ru;

    #ssl_certificate /etc/ssl/nginx/.crt;
    #ssl_certificate_key /etc/ssl/nginx/.key;

    # Add headers to serve security related headers
    # Before enabling Strict-Transport-Security headers please read into this topic first.
    #add_header Strict-Transport-Security "max-age=15552000; includeSubDomains";
    add_header X-Content-Type-Options nosniff;
    add_header X-Frame-Options "SAMEORIGIN";
    add_header X-XSS-Protection "1; mode=block";
    add_header X-Robots-Tag none;
    add_header X-Download-Options noopen;
    add_header X-Permitted-Cross-Domain-Policies none;

    # Path to the root of your installation
    root /var/www/html/owncloud/;

    location = /robots.txt {
        allow all;
        log_not_found off;
        access_log off;
    }

    # The following 2 rules are only needed for the user_webfinger app.
    # Uncomment it if you're planning to use this app.
    #rewrite ^/.well-known/host-meta /public.php?service=host-meta last;
    #rewrite ^/.well-known/host-meta.json /public.php?service=host-meta-json last;

    location = /.well-known/carddav {
        return 301 $scheme://$host/remote.php/dav;
    }
    location = /.well-known/caldav {
        return 301 $scheme://$host/remote.php/dav;
    }

    location /.well-known/acme-challenge { }

    # set max upload size
    client_max_body_size 512M;
    fastcgi_buffers 64 4K;

    # Disable gzip to avoid the removal of the ETag header
    gzip off;

    # Uncomment if your server is build with the ngx_pagespeed module
    # This module is currently not supported.
    #pagespeed off;

    error_page 403 /core/templates/403.php;
    error_page 404 /core/templates/404.php;

    location / {
        rewrite ^ /index.php$uri;
    }

    location ~ ^/(?:build|tests|config|lib|3rdparty|templates|data)/ {
        return 404;
    }
    location ~ ^/(?:\.|autotest|occ|issue|indie|db_|console) {
        return 404;
    }

    location ~ ^/(?:index|remote|public|cron|core/ajax/update|status|ocs/v[12]|updater/.+|ocs-provider/.+|core/templates/40[34])\.php(?:$|/) {
        fastcgi_split_path_info ^(.+\.php)(/.*)$;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param PATH_INFO $fastcgi_path_info;
        #fastcgi_param HTTPS on;
        fastcgi_param modHeadersAvailable true; #Avoid sending the security headers twice
        fastcgi_param front_controller_active true;
        fastcgi_pass php-handler;
        fastcgi_intercept_errors on;
        fastcgi_request_buffering off; #Available since nginx 1.7.11
    }

    location ~ ^/(?:updater|ocs-provider)(?:$|/) {
        try_files $uri $uri/ =404;
        index index.php;
    }

    # Adding the cache control header for js and css files
    # Make sure it is BELOW the PHP block
    location ~* \.(?:css|js)$ {
        try_files $uri /index.php$uri$is_args$args;
        add_header Cache-Control "public, max-age=7200";
        # Add headers to serve security related headers (It is intended to have those duplicated to the ones above)
        # Before enabling Strict-Transport-Security headers please read into this topic first.
        #add_header Strict-Transport-Security "max-age=15552000; includeSubDomains";
        add_header X-Content-Type-Options nosniff;
        add_header X-Frame-Options "SAMEORIGIN";
        add_header X-XSS-Protection "1; mode=block";
        add_header X-Robots-Tag none;
        add_header X-Download-Options noopen;
        add_header X-Permitted-Cross-Domain-Policies none;
        # Optional: Don't log access to assets
        access_log off;
    }

    location ~* \.(?:svg|gif|png|html|ttf|woff|ico|jpg|jpeg)$ {
        try_files $uri /index.php$uri$is_args$args;
        # Optional: Don't log access to other assets
        access_log off;
    }
}
当我输入owncloud.my.domain.ru时-我在浏览器中得到ERR\u NAME\u NOT\u RESOLVED错误

当我使用my.domain.ru时,我被正确地重定向到nginx根目录(var/www/html/index.php)

还有一个问题。在我的尝试中,我确实使用了另一个域:mysecondomain.tech,我将其设置为owncloud.mysecondomain.tech。在那次尝试中,我添加了从http到https的重定向。现在,即使我完全从配置中删除了它,但每当我使用owncloud.mysecondomain.tech时,它都会将我重定向到服务器根本不提供服务的位置(当然,这会导致我连接出错)

我尝试重新启动nginx,-s重新加载,重新启动服务器,但没有任何帮助

请帮帮我,我做错了什么? 我可以提供所需的任何其他信息。 谢谢


更新: 事实上,第二个问题是由于DNS在我在服务器上测试时没有更新,或者是由于浏览器缓存

我再试了一次,它给了我502个严重的网关错误。根据谷歌的建议,我在
/etc/php/7.0/fpm/pool.d/www.conf
文件中更改了这一位

listen = 127.0.0.1:9000
;was listen = /run/php/php7.0-fpm.sock
(我想我可以将
默认值
文件改为使用
…fpm.sock
。这对以下问题有什么影响吗?)

现在我终于进入了OwnCloud的“添加域为可信域”页面。但当我点击“添加”按钮时,它会将我重定向到lan ip
http://192.168.1.17/settings/admin?trustDomain=owncloud.mydomain.tech
并抛出:

404 Not Found

nginx/1.10.0 (Ubuntu)

现在哪里可能有问题?

ERR\u NAME\u NOT\u RESOLVED是一个DNS问题,与您的服务器无关。另一个问题可能与浏览器缓存有关。非常感谢您为我指明了正确的方向,这确实只是一个DNS问题。但是现在还有一个问题,我更新了帖子