我是nginx和专用服务器的新手。我有DigitalOcean帐户。我想使用nginx在该服务器上部署Laravel API。
我遵循this教程,但感到困惑。有人可以告诉我如何逐步进行吗?我想使用IP地址和端口号(例如:xxx.xxx.xx.x:8000)来访问它。
当前配置
server {
listen 80;
listen [::]:80;
root /var/www/YourWork/public;
index index.php index.html index.htm index.nginx-debian.html;
server_name 104.189.130.192;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
fastcgi_param DOCUMENT_ROOT $realpath_root;
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
}
答案 0 :(得分:0)
将侦听端口更改为8000并使用
重新启动nginx服务sudo service nginx restart