diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-08-30 12:36:48 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-08-30 12:36:48 +0200 |
commit | 8f97641c8c34d141b5910331c2db17a28c3968d1 (patch) | |
tree | 8a8ea0f541871fb085f042dfba27a297be667eac | |
parent | 9f19fcb307a6eaca7e88599d2234ae7190b95a6e (diff) | |
download | Ishtar-8f97641c8c34d141b5910331c2db17a28c3968d1.tar.bz2 Ishtar-8f97641c8c34d141b5910331c2db17a28c3968d1.zip |
Conf: add ipv6 to nginx conf
-rw-r--r-- | install/nginx.conf.template | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/install/nginx.conf.template b/install/nginx.conf.template index 8e6b5e5df..27a24aebc 100644 --- a/install/nginx.conf.template +++ b/install/nginx.conf.template @@ -1,5 +1,6 @@ server { listen #NGINX_PORT#; + listen [::]:#NGINX_PORT#; server_name #URL#; root #INSTALL_PATH#; access_log /var/log/django/#APP_NAME#-access.log; |