Home > Backend Development > PHP Tutorial > ubuntu 1404 nginx php

ubuntu 1404 nginx php

WBOY
Release: 2016-07-29 09:02:36
Original
764 people have browsed it

Open the default file in /etc/nginx/sites-available and modify it

<code><span>#添加一个index.php</span>
server {
    <span>listen</span><span>80</span> default_server;
    <span>listen</span> [::]:<span>80</span> default_server ipv6

    root /usr/share/nginx/html;
    <span>index</span><span>index</span>.php <span>index</span>.html <span>index</span>.htm; <span>#添加</span><span># Make site accessible from http://localhost/</span>
    server_name localhost;

    location / {
        <span># First attempt to serve request as file, then</span><span># as directory, then fall back to displaying a 404.</span>
        try_files <span>$uri</span><span>$uri</span>/ =<span>404</span>;
        <span># Uncomment to enable naxsi on this location</span><span># include /etc/nginx/naxsi.rules</span>
    }
</code>
Copy after login

Comment out some things

<code>    location ~ \<span>.php</span>$ {
         fastcgi_split_path_info ^(.+\<span>.php</span>)(/.+)$<span>;</span><span># NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini</span><span># With php5-cgi alone:</span><span>#fastcgi_pass 127.0.0.1:9000;</span><span># With php5-fpm:</span><span>#fastcgi_param SCRIPT_FILENAME /path$fastcgi_script_name;</span>
        fastcgi_pass unix:/var/run/php5-fpm<span>.sock</span><span>;</span>
        fastcgi_index index<span>.php</span><span>;</span>
        include fastcgi_params<span>;</span>
    }
</code>
Copy after login

You’re done

').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });

The above introduces ubuntu 1404 nginx php, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template