first commit! 🎉
This commit is contained in:
commit
c927d9490e
10 changed files with 1229 additions and 0 deletions
20
nginx.conf
Normal file
20
nginx.conf
Normal file
|
@ -0,0 +1,20 @@
|
|||
server {
|
||||
listen 443 ssl;
|
||||
server_name arimelody.me;
|
||||
|
||||
ssl_protocols TLSv1.2 TLSv1.3;
|
||||
|
||||
ssl_certificate /etc/nginx/ssl/arimelody.crt;
|
||||
ssl_certificate_key /etc/nginx/ssl/arimelody.key;
|
||||
|
||||
root /usr/share/nginx/arimelody/;
|
||||
|
||||
client_max_body_size 0;
|
||||
|
||||
location / {
|
||||
}
|
||||
|
||||
if ($scheme != "https") {
|
||||
return 301 https://$server_name$request_uri;
|
||||
}
|
||||
}
|
Reference in a new issue