anthony / Minimal nginx reverse-proxy
0 likes
0 forks
1 files
Last active
1 | server { |
2 | listen 80; |
3 | listen [::]:80; |
4 | server_name example.com; # replace with your domain |
5 | |
6 | access_log /var/log/nginx/access.log; |
7 | error_log /var/log/nginx/error.log; |
8 | #client_max_body_size 100M; |
9 | |
10 | location / { |
Newer
Older