We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 290c292 commit 4a1b2f1Copy full SHA for 4a1b2f1
nginx-bioinfodlsu-https.conf
@@ -22,7 +22,9 @@ http {
22
listen 80;
23
server_name ricepilaf.bioinfodlsu.com;
24
server_tokens off;
25
- return 301 https://ricepilaf.bioinfodlsu.com$request_uri;
+ location / {
26
+ return 301 https://ricepilaf.bioinfodlsu.com$request_uri;
27
+ }
28
}
29
server {
30
listen 443 ssl;
@@ -40,6 +42,10 @@ http {
40
42
location /static {
41
43
alias /app/static;
44
45
+ location /.well-known/acme-challenge/ {
46
+ allow all;
47
+ root /tmp/acme-challenge;
48
49
50
-daemon off;
51
+daemon off;
0 commit comments