Question
What should be given in server name to setup nginx if i don't have any public domain name?
What should be given in server name to setup nginx if i don’t have any public domain name?
Current config:
server {
listen 80;
server_name **server_domain_name**;
location / {
include proxy_params;
proxy_pass http://unix:/home/kiranmayee/PycharmProjects/ncvs/ncvs.sock;
}
}
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×