This repository has been archived on 2024-10-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
rzh-server/proxy/newsite
2018-06-04 14:27:52 +02:00

13 lines
187 B
Bash

#!/bin/bash
cat > /etc/nginx/sites-available/$1 <<EOF
server {
listen 80 default_server;
#listen 443 ssl default_server;
server_name $1;
location / {
proxy_pass $2
}
}
EOF