apache_conf 配置Nginx演示
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apache_conf 配置Nginx演示相关的知识,希望对你有一定的参考价值。
server {
listen 80;
#listen [::]:80 default_server;
root /home/tyluu/projects/KLTN/Code/Radius-login-php;
# Add index.php to the list if you are using PHP
index index.php; #index.html index.htm index.nginx-debian.html;
server_name radius-login.dev;
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
location ~ ^/assets/.*\.php$ {
deny all;
}
location ~ \.php$ {
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
#fastcgi_pass php7.0-fpm;
try_files $uri =404;
}
location ~* /\. {
deny all;
}
}
以上是关于apache_conf 配置Nginx演示的主要内容,如果未能解决你的问题,请参考以下文章
apache_conf Nginx配置包装js导入为html5导入
apache_conf nginx的
apache_conf nginx ip响应
apache_conf nginx的路由重定向
nginx基础配置加基础实战演示
Nginx——nginx作为静态资源web服务(浏览器缓存示例演示)