Initial commit.

This commit is contained in:
2021-05-24 22:18:33 +03:00
commit e2954d55f4
3701 changed files with 330017 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
server {
listen 192.168.1.2:80;
server_name wordpress.club3d.ro;
access_log /var/log/nginx/wordpress.club3d.ro.access.log;
location / {
proxy_pass http://10.208.1.219:80/;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
}
}