Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Loudbooks authored Dec 4, 2024
1 parent dbd3327 commit a426ffb
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ Create a file under the name `pastebook.conf` and add the following content:
```nginx
server {
listen 80;
server_name <DOMAIN>
server_name <DOMAIN>;
location / {
return 301 https://$host$request_uri;
Expand All @@ -98,7 +98,7 @@ server {
server {
listen 443 ssl;
server_name <DOMAIN>
server_name <DOMAIN>;
location / {
proxy_buffering off;
Expand All @@ -111,7 +111,7 @@ server {
server {
listen 80;
server_name api.<DOMAIN>
server_name api.<DOMAIN>;
location / {
return 301 https://$host$request_uri;
Expand All @@ -120,7 +120,9 @@ server {
server {
listen 443 ssl;
server_name api.<DOMAIN>
server_name api.<DOMAIN>;
client_max_body_size 6M;
location / {
proxy_buffering off;
Expand Down

0 comments on commit a426ffb

Please sign in to comment.