DD收藏文章

linux nohup 启动 jar 包服务

2020-09-01  本文已影响0人  吉他手_c156

启动 jar 包

查看进程

查看 nginx 配置文件位置

linux 查看当前所在目录路径

nginx 日志目录

/var/log/nginx

nginx 错误 failed (13: Permission denied)

只要把nginx的进程user改为root即可,将/etc/nginx/nginx.conf中的第一行改为root


image.png

nginx 405 Not Allowed 错误

server {
    listen 80;
    server_name 1.80.232.22;
    access_log off;
    location / {
        root '/uin/web';
        index index.html;
        try_files $uri $uri/ /index.html;
    }
    # To allow POST on static pages 允许静态页使用POST方法
    error_page  405 =200 $uri;
}
上一篇下一篇

猜你喜欢

热点阅读