skip to Main Content

Nginx – how to display $ in bash script

I have a script. I can't print $ in a screen. #!/bin/bash SERVER_IP="" PASSWORD="" DOMAIN="" CONFIG_CONTENT=$(cat << EOF server { listen 80; listen [::]:80; root /home/webmas/$DOMAIN; index index.php index.html index.htm index.nginx-debian.html; server_name $DOMAIN; location / { try_files $uri $uri/ =404;…

VIEW QUESTION
Back To Top
Search