02 2022 档案
摘要:1.用户操作 # 创建用户并设置密码 create user test with password '123456'; # 创建超级用户并设置密码 CREATE ROLE test superuser PASSWORD '123456' login; # 修改用户密码 alter user test
阅读全文
摘要:1.代码 server { listen 8088; server_name localhost; location / { root /opt/test/73; index index.html; } location /api/ { #后台接口 proxy_pass http://localho
阅读全文