I have built a project using fastapi,and using nginx as a reverse proxy. the local address of the project is http://127.0.01:8001 . I am using Python Manager 2.0 to manage this fastapi project and I have mapped the domain test.example.com to it.
I have requested an ssl certificate for the domain test.example.com and deployed it.
The problem is that I can't access the web properly by using
ssl. When I use http://test.example.com:8001 or http://test.example.com it works, but use https://test.example.com , the browser show blank.
But I can see the normal html code by using the browser "view source code" tool.
How should I fix it? Thanks for your help!
The configuration file is as follows:
bind = '0.0.0.0:8001'
user = 'root'
workers = 1
threads = 2
backlog = 512
daemon = True
chdir = '/www/wwwroot/test.example.com/'
access_log_format = '%(t)s %(p)s %(h)s "%(r)s" %(s)s %(L)s %(b)s %(f)s" "%(a)s"'
loglevel = 'info'
worker_class = 'uvicorn.workers.UvicornWorker'
errorlog = chdir + '/logs/error.log'
accesslog = chdir + '/logs/access.log'
pidfile = chdir + '/logs/test.example.com.pid'
The reverse proxy configuration for nginx is as follows:
`#PROXY-START/
location /
{
proxy_pass http://127.0.0.1:8001;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_http_version 1.1;
proxy_hide_header Upgrade;
#Persistent connection related configuration
add_header X-Cache $upstream_cache_status;
#Set Nginx Cache
set $static_fileJPg9GaIZ 0;
if ( $uri ~* "\.(gif|png|jpg|css|js|woff|woff2)$" )
{
set $static_fileJPg9GaIZ 1;
expires 1m;
}
if ( $static_fileJPg9GaIZ = 0 )
{
add_header Cache-Control no-cache;
}
}
#PROXY-END/`
#One-click application for SSL certificate verification directory related settings
location ~ \.well-known{
allow all;
}
#This is nginx config file: test.example.com.conf
`{
listen 80;
listen 443 ssl http2;
server_name test.example.com;
index index.php index.html index.htm default.php default.htm default.html;
root /www/wwwroot/test.example.com;
#SSL-START SSL related configuration, do NOT delete or modify the next line of commented-out 404 rules
#error_page 404/404.html;
#HTTP_TO_HTTPS_START
if ($server_port !~ 443){
rewrite ^(/.*)$ https://$host$1 permanent;
}
#HTTP_TO_HTTPS_END
ssl_certificate /www/server/panel/vhost/cert/test.example.com/fullchain.pem;
ssl_certificate_key /www/server/panel/vhost/cert/test.example.com/privkey.pem;
ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3;
ssl_ciphers EECDH+CHACHA20:EECDH+CHACHA20-draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5;
ssl_prefer_server_ciphers on;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 10m;
add_header Strict-Transport-Security "max-age=31536000";
error_page 497 https://$host$request_uri;
#SSL-END
#ERROR-PAGE-START Error page configuration, allowed to be commented, deleted or modified
#error_page 404 /404.html;
#error_page 502 /502.html;
#ERROR-PAGE-END
#PHP-INFO-START PHP reference configuration, allowed to be commented, deleted or modified
#Clear cache
location ~ /purge(/.*) {
proxy_cache_purge cache_one $host$1$is_args$args;
#access_log /www/wwwlogs/test.example.com_purge_cache.log;
}
#Referenced reverse proxy rule, if commented, the configured reverse proxy will be invalid
include /www/server/panel/vhost/nginx/proxy/test.example.com/*.conf;
include enable-php-00.conf;
#PHP-INFO-END
#REWRITE-START URL rewrite rule reference, any modification will invalidate the rewrite rules set by the panel
include /www/server/panel/vhost/rewrite/test.example.com.conf;
#REWRITE-END
# Forbidden files or directories
location ~ ^/(\.user.ini|\.htaccess|\.git|\.env|\.svn|\.project|LICENSE|README.md)
{
return 404;
}
# Directory verification related settings for one-click application for SSL certificate
location ~ \.well-known{
allow all;
}
#Prohibit putting sensitive files in certificate verification directory
if ( $uri ~ "^/\.well-known/.*\.(php|jsp|py|js|css|lua|ts|go|zip|tar\.gz|rar|7z|sql|bak)$" ) {
return 403;
}
access_log /www/wwwlogs/test.example.com.log;
error_log /www/wwwlogs/test.example.com.error.log;
}`