luntik2012

Results 40 comments of luntik2012

Repo title: > Modest — a pure C HTML renderer

I've installed it just now and it doesn't work (archlinux testing). Worked previously. Service failed to start

```sh Feb 16 15:54:56 myhostname openvpn[464347]: Consider setting groups/curves preference with tls-groups instead of forcing a specific curve with ecdh-curve. Feb 16 15:54:56 myhostname openvpn[464347]: Note: Treating option '--ncp-ciphers' as...

```sh sudo chown -R openvpn.network /var/log/openvpn /etc/openvpn/ ``` worked for me https://github.com/sansible/openvpn/issues/15

could somebody update it please? cannot use this on archlinux...

No error. I do this: curl -H "Content-Type: application/json" -X POST -d '{.....}' address/blablabla/ololo In my nim code I have this: ``` post "address/blablabla/ololo": resp "12345" ``` or post "address/blablabla/ololo":...

No, I cannot, but you need only this: post "some_address": resp "12345" # or resp "123456" and try curl -i -H "Content-Type: application/json" -X POST -d 'ololo' some_address with "12345"...

look: settings: port = Port(5000) bindAddr = "123.123.123.123" post "/letters/photos/?": resp "12345" I'll not work at all if I write it like you, but it doesn't work, when lenght of...

Just try it yourself On 30/07/15 09:31, Christine Dodrill wrote: > Your code is wrong. You need to lead routes with a slash. > > # example.nim > > import...

It's not leading "/". I had it in all of my routes. There is some error. Do you understand me? I have this code: import jester, asyncdispatch settings: port =...