zoukankan      html  css  js  c++  java
  • docker nginx配置

    server {
    
            listen 80;
    
            root /###################/public;
            index index.html index.htm index.php;
    
            server_name                     ######################;
    
            client_max_body_size            8M;
    
            ##################################################################################################
            # Disable sendfile as per https://docs.vagrantup.com/v2/synced-folders/virtualbox.html
    
            sendfile off;
    
            ##################################################################################################
            # Add stdout logging
    
            access_log              /dev/null;
            error_log               /dev/null;
    
            ##################################################################################################
            # Add option for x-forward-for (real ip when behind elb)
            #real_ip_header X-Forwarded-For;
            #set_real_ip_from 172.16.0.0/12;
    
            location / {
                    try_files $uri $uri/ /index.php?$query_string;
            }
    
            error_page 404 /404.html;
    
            location = /404.html {
                    root /var/www/errors;
                    internal;
            }
    
            location ^~ /ngd-style.css {
                    alias /var/www/errors/style.css;
                    access_log off;
            }
    
            location ^~ /ngd-sad.svg {
                    alias /var/www/errors/sad.svg;
                    access_log off;
            }
    
            ##################################################################################################
            # pass the PHP scripts to FastCGI server listening on socket
    
            location ~ .php$ {
    
                    try_files $uri =404;
    
                    fastcgi_split_path_info ^(.+.php)(/.+)$;
                    fastcgi_pass php;
                    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                    fastcgi_param SCRIPT_NAME $fastcgi_script_name;
                    fastcgi_index index.php;
    
                    fastcgi_param HTTPS on;
    
                    include fastcgi_params;
    
            }
    
            location ~* .(jpg|jpeg|gif|png|css|js|ico|xml)$ {
                    expires         5d;
            }
    
            ##################################################################################################
            # deny access to . files, for security
    
            location ~ /. {
                    log_not_found off;
                    deny all;
            }
    
            location ^~ /.well-known {
                    allow all;
                    auth_basic off;
            }
    }
    

      

     
  • 相关阅读:
    前端3 浮动布局,固定定位,绝对定位,相对定位
    前端2 字体|文本属性样式, 高级选择器
    前端1.概念
    前端,基础选择器,嵌套关系.display属性,盒模型
    数据库之索引
    数据库之进阶(视图,事务,存储过程)
    数据库,多表数据
    数据库之表的使用
    数据的演化(数据仓库的发展史)
    HDFS退出安全模式
  • 原文地址:https://www.cnblogs.com/saonian/p/14714107.html
Copyright © 2011-2022 走看看