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 / { |
anthony / Backup your project to another server (scp)
0 likes
0 forks
1 files
Last active
1 | #!/bin/bash |
2 | ##################################################################### |
3 | # # |
4 | # Stupidly simple backup script for own projects # |
5 | # # |
6 | # Author: Anthony Axenov (Антон Аксенов) # |
7 | # Version: 1.0 # |
8 | # License: WTFPLv2 More info: https://axenov.dev/?p=1423 # |
9 | # # |
10 | ##################################################################### |