Skip to content

Commit

Permalink
Merge pull request #3 from KairuiLiu/dev
Browse files Browse the repository at this point in the history
fix: ng config
  • Loading branch information
KairuiLiu authored May 2, 2024
2 parents 92664a4 + f2c849c commit 3802d9a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions technical/deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,15 +113,15 @@ mkdir /path/to/wwwroot/conflux
server {
listen 443 ssl http2;
server_name conflux.liukairui.me;
server_name YOUR_DOMAIN_NAME;
index index.html index.htm;
root /home/liukairui/wwwroot/conflux/html;
root /path/to/wwwroot/conflux/html;
try_files $uri $uri/ /index.html
error_page 404 /index.html;
ssl_certificate /home/liukairui/wwwroot/ssl/cert.pem;
ssl_certificate_key /home/liukairui/wwwroot/ssl/key.pem;
ssl_certificate /path/to/wwwroot/ssl/cert.pem;
ssl_certificate_key /path/to/wwwroot/ssl/key.pem;
gzip on;
gzip_disable "msie6";
Expand Down

0 comments on commit 3802d9a

Please sign in to comment.