diff options
-rw-r--r-- | config/nginx.conf.example | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config/nginx.conf.example b/config/nginx.conf.example index a09f27643..bb4707683 100644 --- a/config/nginx.conf.example +++ b/config/nginx.conf.example @@ -12,7 +12,9 @@ upstream alaveteli { server { listen 80 default; - server_name www.example.com; + # Set the server name to your domain name if you have multiple nginx servers + # running on your machine + # server_name www.example.com; root /var/www/alaveteli/public; server_tokens off; |