1
0
Fork 0

Fixup highlight

This commit is contained in:
Luca Beltrame 2015-06-01 12:19:27 +02:00
parent 07ff57f9b6
commit 22cba8f34f

View file

@ -17,21 +17,23 @@ As I said in my latest post, I wasn't very happy with using Disqus to store my c
After reading the online documentation, I decided to set it up with dennogumi.org. It was all a matter of creating a new user called ``isso``, setting a virtualenv to its home dir, and then installing isso itself and [uWSGI](https://uwsgi-docs.readthedocs.org/en/latest/):
````
{% highlight bash %}
virtualenv ./
./bin/activate
````
{% endhighlight %}
And then just start installing:
````
{% highlight bash %}
pip install isso
pip install uwsgi # for deployment
````
{% endhighlight %}
I then set up a system-wide configuration in ``/etc/isso/`` which included the uwsgi configuration and isso's own file. The last bit needed was to create a systemd unit file to run uWSGI properly (as inspired by the uWSGI docs):
````ini
{% highlight ini %}
[Unit]
Description=uWSGI
After=syslog.target
@ -49,11 +51,12 @@ Group=isso
[Install]
WantedBy=multi-user.target
````
{% endhighlight %}
And here's my uwsgi.ini, for reference:
````ini
{% highlight ini %}
[uwsgi]
http = :8050
master = true
@ -66,6 +69,7 @@ module = isso.run
; uncomment if you use a virtual environment
virtualenv = /home/isso/
env = ISSO_SETTINGS=/etc/isso/isso.conf
````
{% endhighlight %}
Lastly, I needed to create a new domain for dennogumi.org and set nginx to proxy over to port 8050. Everything else was done as the isso documentation suggested. And that's where you see it now. I have imported the comments from Disqus, so everything should be hopefully in place. Let me know if there are issues.