TranslationManagement icon indicating copy to clipboard operation
TranslationManagement copied to clipboard

Hi, How to write Nginx config?

Open carlccy opened this issue 6 years ago • 3 comments

Hi, Your project is great. How to write Nginx? Can you support a demo? Thank you!

carlccy avatar Mar 21 '19 10:03 carlccy

Hi,

Thanks for your comment, your mean Nginx rewrite conf ?

location / {  
	try_files $uri $uri/ /index.php$is_args$query_string;  
}  

yusureabc avatar Mar 22 '19 01:03 yusureabc

Hi, I'm not good at Nginx, can you give a complete Nginx configure? thanks.

carlccy avatar Mar 22 '19 02:03 carlccy

server
{
    listen 80;
    server_name translate.demo.yusure.cn;
    index index.php index.html index.htm default.php default.htm default.html;
    root /www/wwwroot/TranslationManagement/public;
    
    #SSL-START SSL相关配置,请勿删除或修改下一行带注释的404规则
    #error_page 404/404.html;
    #SSL-END
    
    #ERROR-PAGE-START  错误页配置,可以注释、删除或修改
    error_page 404 /404.html;
    error_page 502 /502.html;
    #ERROR-PAGE-END
    
    #PHP-INFO-START  PHP引用配置,可以注释或修改
    include enable-php-73.conf;
    #PHP-INFO-END
    
    #REWRITE-START URL重写规则引用,修改后将导致面板设置的伪静态规则失效
    include /www/server/panel/vhost/rewrite/translate.demo.yusure.cn.conf;
    #REWRITE-END
    
    #禁止访问的文件或目录
    location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)
    {
        return 404;
    }
    
    #一键申请SSL证书验证目录相关设置
    location ~ \.well-known{
        allow all;
    }
    
    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
    {
        expires      30d;
        error_log off;
        access_log /dev/null;
    }
    
    location ~ .*\.(js|css)?$
    {
        expires      12h;
        error_log off;
        access_log /dev/null; 
    }
    access_log  /www/wwwlogs/translate.demo.yusure.cn.log;
    error_log  /www/wwwlogs/translate.demo.yusure.cn.error.log;
}

yusureabc avatar Mar 22 '19 05:03 yusureabc