在 Nginx 上部署 Gatsby js 静态站点 VPS
Deploy Gatsby js static site on Nginx VPS
基本上我用 gatsby build
命令构建了我的 gatsby 站点,我想用 Nginx
.
为 public
目录提供所有静态文件
我在 /var/www/mywebsite
中有我的站点,在 /var/www/test
中还有一些测试 html 基本页面。
我可以提供该测试页面并且它工作正常但是当我将目录更改为那个 gatsby 站点时它不起作用并且我得到 Forbiden 403 error
。
我假设这可能是我的配置,但我是否必须对 gatsby 做一些特殊的事情才能正确地提供所有这些静态文件?
nginx.conf
http {
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
index index.html index.htm;
include /etc/nginx/mime.types;
default_type application/octet-stream;
# Load modular configuration files from the /etc/nginx/conf.d directory.
# See http://nginx.org/en/docs/ngx_core_module.html#include
include /etc/nginx/conf.d/*.conf;
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
root /usr/share/nginx/html;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
server {
server_name mywebsite.com www.mywebsite.com; # managed by Certbot
# root /var/www/test; # <-- This gets served
root /var/www/mywebsite/public; # <-- This doesn't
index index.html index.html;
location / {
try_files $uri $uri/ /index.html;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
# some ssl certificates...
}
server {
if ($host = www.mywebsite.com) {
return 301 https://$host$request_uri;
} # managed by Certbot
if ($host = mywebsite.com) {
return 301 https://$host$request_uri;
} # managed by Certbot
listen 80;
listen [::]:80;
server_name mywebsite.com www.mywebsite.com;
return 404; # managed by Certbot
}
}
我读到我不需要 sites-available
和 sites-enabled
目录,它可以在主 nginx.conf 文件中配置或包含在 conf.d 中nginx.conf 本身的目录。
禁止的错误可能与权限问题有关。
您可以在/var/www中通过运行ning ls -al
检查权限。
运行 sudo chown www-data -R /var/www
看看问题是否仍然存在。
如果这不能解决问题 运行:
sudo tail -f /var/log/nginx/error.log
并检查日志以了解问题所在。或在您的问题中包含日志。
基本上我用 gatsby build
命令构建了我的 gatsby 站点,我想用 Nginx
.
public
目录提供所有静态文件
我在 /var/www/mywebsite
中有我的站点,在 /var/www/test
中还有一些测试 html 基本页面。
我可以提供该测试页面并且它工作正常但是当我将目录更改为那个 gatsby 站点时它不起作用并且我得到 Forbiden 403 error
。
我假设这可能是我的配置,但我是否必须对 gatsby 做一些特殊的事情才能正确地提供所有这些静态文件?
nginx.conf
http {
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
index index.html index.htm;
include /etc/nginx/mime.types;
default_type application/octet-stream;
# Load modular configuration files from the /etc/nginx/conf.d directory.
# See http://nginx.org/en/docs/ngx_core_module.html#include
include /etc/nginx/conf.d/*.conf;
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
root /usr/share/nginx/html;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
server {
server_name mywebsite.com www.mywebsite.com; # managed by Certbot
# root /var/www/test; # <-- This gets served
root /var/www/mywebsite/public; # <-- This doesn't
index index.html index.html;
location / {
try_files $uri $uri/ /index.html;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
# some ssl certificates...
}
server {
if ($host = www.mywebsite.com) {
return 301 https://$host$request_uri;
} # managed by Certbot
if ($host = mywebsite.com) {
return 301 https://$host$request_uri;
} # managed by Certbot
listen 80;
listen [::]:80;
server_name mywebsite.com www.mywebsite.com;
return 404; # managed by Certbot
}
}
我读到我不需要 sites-available
和 sites-enabled
目录,它可以在主 nginx.conf 文件中配置或包含在 conf.d 中nginx.conf 本身的目录。
禁止的错误可能与权限问题有关。
您可以在/var/www中通过运行ning ls -al
检查权限。
运行 sudo chown www-data -R /var/www
看看问题是否仍然存在。
如果这不能解决问题 运行:
sudo tail -f /var/log/nginx/error.log
并检查日志以了解问题所在。或在您的问题中包含日志。