I have ip address of ubuntu server and can connect through ssh
like
ssh abcd@13.12.9.9
# and this ask me for password and then i connect to this ubuntu server
My Question how i set this ip of ubuntu server in nginx server name in proper way so that i can access this nginx server globally
server {
listen 80;
server_name 13.12.9.9; # this is correct syntax or wrong or i give it like this abcd@13.12.9.9
location / {
include proxy_params;
proxy_pass http://unix:/home/abcd/myFlaskApp/app.sock;
}
}
Any help would be appreciated Thanks.