summarylogtreecommitdiffstats
path: root/nginx.conf
diff options
context:
space:
mode:
Diffstat (limited to 'nginx.conf')
-rw-r--r--nginx.conf12
1 files changed, 12 insertions, 0 deletions
diff --git a/nginx.conf b/nginx.conf
new file mode 100644
index 000000000000..781af6b0c990
--- /dev/null
+++ b/nginx.conf
@@ -0,0 +1,12 @@
+server {
+ server_name YOUR_HOSTNAME;
+ listen 80;
+ listen [::]:80;
+
+ root /usr/share/webapps/stickerpicker/;
+ index index.html;
+
+ location /packs {
+ root /var/lib/stickerpicker/;
+ }
+}