0
私は本当にNginxには新しく、リモートのNginxサーバーに新しいWebサイトを追加するのです。新しいサイトをNgnixに追加する
は私が/etc/nginx/conf.d/default.conf
たが、これに変更されていることに気づく:
server {
server_name api.example.com;
root /var/www/html/api/public;
index index.php index.html index.htm;
location/{
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
が、私は別のURLを追加したい:同じサーバへtestapi.example.com
。すべてのツチオールは/etc/nginx/sites-enabled/
を指していますが、そのフォルダは空です。これはプロダクションマシンなので、私はダウンタイムをもたらすことを好まないでしょう。
助けてください。