Fixup highlight
This commit is contained in:
parent
07ff57f9b6
commit
22cba8f34f
1 changed files with 12 additions and 8 deletions
|
@ -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/):
|
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 ./
|
virtualenv ./
|
||||||
./bin/activate
|
./bin/activate
|
||||||
````
|
{% endhighlight %}
|
||||||
|
|
||||||
And then just start installing:
|
And then just start installing:
|
||||||
|
|
||||||
````
|
{% highlight bash %}
|
||||||
pip install isso
|
pip install isso
|
||||||
pip install uwsgi # for deployment
|
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):
|
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]
|
[Unit]
|
||||||
Description=uWSGI
|
Description=uWSGI
|
||||||
After=syslog.target
|
After=syslog.target
|
||||||
|
@ -49,11 +51,12 @@ Group=isso
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user.target
|
WantedBy=multi-user.target
|
||||||
|
|
||||||
````
|
{% endhighlight %}
|
||||||
|
|
||||||
And here's my uwsgi.ini, for reference:
|
And here's my uwsgi.ini, for reference:
|
||||||
|
|
||||||
````ini
|
{% highlight ini %}
|
||||||
|
|
||||||
[uwsgi]
|
[uwsgi]
|
||||||
http = :8050
|
http = :8050
|
||||||
master = true
|
master = true
|
||||||
|
@ -66,6 +69,7 @@ module = isso.run
|
||||||
; uncomment if you use a virtual environment
|
; uncomment if you use a virtual environment
|
||||||
virtualenv = /home/isso/
|
virtualenv = /home/isso/
|
||||||
env = ISSO_SETTINGS=/etc/isso/isso.conf
|
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.
|
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.
|
Reference in a new issue