nginxを取得してUbuntu 16.04サーバーでPHPを実行できません


8

編集。
質問はすでにここで回答を得ています:https : //serverfault.com/questions/889334/cant-get-nginx-to-run-php-on-ubuntu-16-04-server

私はnginxを実行しているサーバーをセットアップしていて、phpスクリプトを実行できるようにしようとしています。

どうやらnginxでphpを実行する方法についての最もすばらしい記事はこれです:https : //www.digitalocean.com/community/tutorials/how-to-install-linux-nginx-mysql-php-lemp-stack-in- ubuntu-16-04

以下の説明は、他の方向性が古くなるにつれて終了します。
nginxでPHPを有効にする最も簡単な方法は何ですか?

私はデジタルオーシャンのウェブサイトの指示に従いますが、何も変更されず、まだphpを実行できません。

私はこれでかなり迷っています。どんな助けでもいただければ幸いです。

これは次の出力ですsudo service nginx status

nginx.service - A high performance web server and a reverse proxy server     
Loaded: loaded (/lib/systemd/system/nginx.service; enabled; vendor preset: enabled)
Active: active (running) since Sun 2017-12-17 13:46:33 GMT; 55min ago
Process: 19056 ExecStop=/sbin/start-stop-daemon --quiet --stop --retry QUIT/5 --pidfile /run/nginx.pid (code=exited, status=0/SUCCESS)
Process: 19091 ExecReload=/usr/sbin/nginx -g daemon on; master_process on; -s reload (code=exited, status=0/SUCCESS)    
Process: 19064 ExecStart=/usr/sbin/nginx -g daemon on; master_process on; (code=exited, status=0/SUCCESS)
Process: 19059 ExecStartPre=/usr/sbin/nginx -t -q -g daemon on; master_process on; (code=exited, status=0/SUCCESS)
Main PID: 19066 (nginx)
Tasks: 2
Memory: 4.6M

CPU: 406ms
CGroup: /system.slice/nginx.service
       ├─19066 nginx: master process /usr/sbin/nginx -g daemon on; master_process on
       └─19094 nginx: worker process                           

Dec 17 13:46:33 websites systemd[1]: Starting A high performance web server and a reverse proxy server...
Dec 17 13:46:33 websites systemd[1]: Started A high performance web server and a reverse proxy server.
Dec 17 13:48:53 websites systemd[1]: Reloading A high performance web server and a reverse proxy server.
Dec 17 13:48:53 websites systemd[1]: Reloaded A high performance web server and a reverse proxy server.

これは次の出力ですphp -v

PHP 7.0.22-0ubuntu0.16.04.1 (cli) ( NTS )
Copyright (c) 1997-2017 The PHP Group
Zend Engine v3.0.0, Copyright (c) 1998-2017 Zend Technologies
with Zend OPcache v7.0.22-0ubuntu0.16.04.1, Copyright (c) 1999-2017, by      Zend Technologies

そして、これが私が使っている設定ファイルです。

そので/etc/nginx/conf.d/virtual_servers.conf

server {
    listen 80; 
    server_name openage.org www.openage.org;
    #listen [::]:80 default_server ipv6only=on;

    #root /usr/share/nginx/html;
    root /etc/nginx/html/openage;
    index index.php index.html index.htm;

    #server_name localhost;

    location / { 
        try_files $uri $uri/ =404;
    }   

    error_page 404 /404.html;
    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
        root /usr/share/nginx/html;
    }   

    location ~ \.php$ {
    try_files $uri =404;
    fastcgi_split_path_info ^(.+\.php)(/.+)$;
    fastcgi_pass unix:/var/run/php/php7-fpm.sock;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include fastcgi_params;
    }   

    listen 443 ssl; # managed by Certbot
    ssl_certificate /etc/letsencrypt/live/openage.org/fullchain.pem; # managed by Certbot
    ssl_certificate_key /etc/letsencrypt/live/openage.org/privkey.pem; # managed by Certbot
    include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
    ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}

私はすでに持っています:

  • php-fpmを再起動しました。
  • nginxを再起動しました。
  • ctrl-f5でブラウザキャッシュを強制的に再読み込みしました。
  • / var / log / errorでエラーを確認しましたが、phpファイルを実行してもエラーは発生しません。通常のファイルのように扱うのではなく、phpを実行することになっていることをnginxが認識していないようです。

関数のみを含むスクリプトを実行しようとしていますphpinfo()。しかし、php情報を提供する代わりに、ブラウザはファイルをダウンロードするように私に提案するだけです。/


私たちの結果を示していますsudo service nginx statusphp -v
MehrdadEP

質問に追加しました。
Hermann Ingjaldsson 2017

1
PHPをどのように構成しましたか?設定の編集をphpとnginxに投稿します。php-fpmとnginxを再起動し、ブラウザーのキャッシュをクリアし、nginxログでエラーを確認し、どのphpスクリプトを使用しますか????? もっと情報が必要です。
Panther、

あなたが得るエラーメッセージは何ですか?
George Udosen 2017

@HermannIngjaldssonあなたのnginxステータスはうまく見えます、正確にはエラーは何ですか?
MehrdadEP 2017

回答:


2

terminal次のコマンドを開いて実行します。

gksu gedit /etc/nginx/sites-available/default

これでnginx設定ファイルが開きます。次のテキストで編集します。

server {
    listen 80 default_server;
    listen [::]:80 default_server ipv6only=on;

    root /usr/share/nginx/html;
    index index.php index.html index.htm;

    server_name localhost;

    location / {
        try_files $uri $uri/ =404;
    }

    error_page 404 /404.html;
    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
        root /usr/share/nginx/html;
    }

    location ~ \.php$ {
        try_files $uri =404;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php7-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }
}

ファイルを保存した後、次のコマンドを実行してnginxを再起動します。

sudo service nginx restart

このテキストを構成ファイルに入れ、nginxを再起動しても問題は解決しません。/:
Hermann Ingjaldsson 2017

nginxのconfの中にファイルや編集、それのバージョンを確認するには、この場所を確認します/var/run/php7-fpm.sock
MehrdadEP

あなたはこのフォルダにphpテストファイルを置きましたか?/usr/share/nginx/html
MehrdadEP 2017

/var/run/php7-fpm.sockはありませんが、/ var / run / php / php7.0-fpm.sockがあります。そのソケットとその内容を確認する方法がわかりません。私はあなたが実際に何を求めているのかよく理解していません。
Hermann Ingjaldsson 2017

/ usr / share / nginx / htmlにnginxウェルカムhtmlがあります。
Hermann Ingjaldsson 2017
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.