httpserver.rst: add comments on listen & https

This commit is contained in:
Mikaela Suomalainen 2014-11-15 21:39:39 +02:00
parent 26bbb758fc
commit fc457ea763

View File

@ -50,8 +50,13 @@ It's also possible to use Nginx in front of Supybot's HTTP server. Create a new
.. code-block:: nginx
server {
# Note that your default server should specify these ports
listen 80;
listen [::]:80;
# If your default server also has https configured, uncomment
# the following two listen lines to enable it for this vhost.
#listen 443;
#listen [::]:443;
server_name stats.yourdomain.org;
location / {