群晖 搭建私有为知笔记访问 nginx 错误

访问错误

QQ图片20230309164508.png

处理过程

  • 查看 docker 镜像
docker ps
  • 查看 nginx
ps -ef|grep nginx
  • 进入为知笔记 docker 镜像
docker exec -it viticis-wizserver1 /bin/bash
  • 查看 nginx.conf 配置
cat /etc/nginx/nginx.conf

root@Pomelo:~# docker ps
CONTAINER ID   IMAGE                                       COMMAND                  CREATED         STATUS         PORTS                                              NAMES
29ac934eeb85   viticis/wizserver:latest                    "bash /wiz/app/entry…"   5 minutes ago   Up 5 minutes   0.0.0.0:5005->80/tcp                               viticis-wizserver1
87c89759c8ce   johngong/calibre-web:latest                 "/init"                  3 days ago      Up 3 days      0.0.0.0:5003->8080/tcp, 0.0.0.0:5004->8083/tcp     johngong-calibre-web1
c2439c1d3232   mysql:latest                                "docker-entrypoint.s…"   3 days ago      Up 3 days      0.0.0.0:3306->3306/tcp, 0.0.0.0:49153->33060/tcp   mysql1
a23ae9535f4f   spikhalskiy/zerotier-containerized:latest   "/main.sh zerotier-o…"   4 days ago      Up 4 days                                                         spikhalskiy-zerotier-containerized1
root@Pomelo:~# docker exec it viticis-wizserver1 /bash
Error: No such container: it
root@Pomelo:~# docker exec it viticis-wizserver1 /bin/bash
Error: No such container: it
root@Pomelo:~# docker exec -it viticis-wizserver1 /bin/bash
[root@viticis-wizserver1 /]# ls
Wiznote            bin   dev  home  lib64  mnt                                          opt   root  sbin  sys  usr  wiz
anaconda-post.log  boot  etc  lib   media  mysql57-community-release-el7-10.noarch.rpm  proc  run   srv   tmp  var
[root@viticis-wizserver1 /]# ps -ef|grep nginx
root        82     1  0 08:27 ?        00:00:00 nginx: master process /usr/sbin/nginx -c /etc/nginx/nginx.conf
nginx       83    82  0 08:27 ?        00:00:00 nginx: worker process
nginx       84    82  0 08:27 ?        00:00:00 nginx: worker process
root      1610  1593  0 08:38 pts/1    00:00:00 grep --color=auto nginx
[root@viticis-wizserver1 /]# cat /etc/nginx/nginx.conf
#user  nobody;
worker_processes  2;

error_log  /wiz/storage/logs/nginx/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  8192;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    #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  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;
    client_max_body_size 1G;
    client_body_buffer_size 1024k;
    client_header_buffer_size 2k;


    keepalive_timeout  65;

    gzip  on;
    gzip_disable "MSIE [1-6]\.(?!.*SV1)";
    gzip_min_length  1k;
    gzip_comp_level 6;
    gzip_types       text/plain application/javascript application/x-javascript text/css application/xml text/xml application/json image/svg+xml;
    gzip_vary on;

    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header Host $http_host;
    map $http_x_forwarded_proto $thescheme {
      default $scheme;
      https https;
    }
    proxy_set_header X-Forwarded-Proto $thescheme;
    server {        
        listen       80;
        server_name  localhost;
        root /wiz/app;
        
        location = /robots.txt {
            # rewrite /robots.txt  /pages/404.html  redirect;
             deny all;
        }

        location = / {
            if ($is_args = ?){
                rewrite / /api/;
                proxy_pass http://127.0.0.1:5001;
                break;
            }
            proxy_pass http://127.0.0.1:5001;
        }
   
        location / {
            proxy_pass http://127.0.0.1:5001;
        }


        location /api {
            proxy_pass http://127.0.0.1:5001/api;
        }

        location ~ ^/api/$ {
            proxy_pass http://127.0.0.1:5001;
        }
        
        location /go {
           proxy_pass http://127.0.0.1:5001;
        }

        location /wizmessage {
            proxy_pass http://127.0.0.1:5001/wizmessage;
        }

        location /wizks {
            proxy_pass http://127.0.0.1:5001/wizks;
        }

        location ^~ /wiz-resource {
                        #proxy_set_header Host ks.wiz.cn;
                        rewrite /wiz-resource/([^/]*)/([^/]*)/index_files/(.*)$ /ks/object/download/$1/$2?objType=resource&objId=$3 last;
                        proxy_pass http://127.0.0.1:4001;
        }

        location  /as {
                proxy_pass http://127.0.0.1:5001;
        }

        location  ~* /ks/share/resources/.*/.*/jsonp {
             proxy_pass http://127.0.0.1:5001;
        }

        location   /ks {
             proxy_pass http://127.0.0.1:4001;
        }
        
        location ^~ /ws {
         proxy_pass http://127.0.0.1:5100;
         proxy_redirect off;

         proxy_http_version 1.1;
         proxy_set_header Upgrade $http_upgrade;
         proxy_set_header Connection "upgrade";
        }        

        location /wizsearch2 {
            proxy_pass http://127.0.0.1:3000;
        }
        
        location /search {
           proxy_pass http://127.0.0.1:3000;
        }

        location /manage_console {
          rewrite /manage_console /report last;
        }

        location ^~ /template {
            alias /wiz/app/webtemplate;
        }

        location ^~ /manual {
            root   /wiz/app/;
            index  index.html index.htm;
        }
        
        location ^~ /ui {
            proxy_pass http://127.0.0.1:5001/ui;
        }

        location ^~ /auth {
            rewrite /auth/(.*) /$1 permanent;
        }
           
        location ^~ /web {
             proxy_pass http://127.0.0.1:5001/web;
        }
   
        location ^~ /report {
            proxy_pass http://127.0.0.1:5001/report;
        }

        location ^~ /wapp {
            proxy_pass http://127.0.0.1:5001/wapp;
        }

        location ^~ /xapp {
            add_header Service-Worker-Allowed "/xapp";
           root /wiz/app/wizserver/web/prod;
            index index.html;
            try_files $uri $uri/ /xapp/index.html;
        }
        location = /xapp {
           add_header Service-Worker-Allowed "/xapp";
           root /wiz/app/wizserver/web/prod;
           rewrite ^(.*)  $1/index.html break;
        }

        location ^~ /test {
          proxy_pass http://127.0.0.1:5001/test;
        }

        location ^~ /share {
            proxy_pass http://127.0.0.1:5001/share;
        }

        location ^~ /editor/ {
          proxy_redirect off;
          proxy_http_version 1.1;
          proxy_set_header Upgrade $http_upgrade;
          proxy_set_header Connection "upgrade";
          proxy_set_header X-Real-IP $remote_addr;
          proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
          proxy_set_header X-Forwarded-Proto  $scheme;
          proxy_set_header Host $http_host;
          proxy_pass http://127.0.0.1:9000/;
        }

        location ^~ /convert/ {
            proxy_pass http://127.0.0.1:9100;
        }
        
        access_log  /wiz/storage/logs/nginx/access.log;

        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }
}
[root@viticis-wizserver1 /]# root@Pomelo:~# 
  • 还是不行

最终解决

  • 访问为知笔记官方网站

  • 官方说只是没有完全起来而已,那就等等吧


    QQ截图20230309164904.png
  • 过一会再次刷新,成功


    QQ截图20230309165216.png
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,634评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,951评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,427评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,770评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,835评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,799评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,768评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,544评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,979评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,271评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,427评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,121评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,756评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,375评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,579评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,410评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,315评论 2 352

推荐阅读更多精彩内容