update_readme
This commit is contained in:
parent
271d40105d
commit
93b5e4981e
33
README.md
33
README.md
@ -64,15 +64,32 @@ Installing
|
|||||||
and listening on port `27702` may look like:
|
and listening on port `27702` may look like:
|
||||||
|
|
||||||
```
|
```
|
||||||
server {
|
worker_processes 1;
|
||||||
listen 27701;
|
|
||||||
server_name default;
|
|
||||||
|
|
||||||
location / {
|
events {
|
||||||
proxy_http_version 1.0;
|
worker_connections 1024;
|
||||||
proxy_pass http://localhost:27702/;
|
}
|
||||||
}
|
|
||||||
}
|
http {
|
||||||
|
include mime.types;
|
||||||
|
default_type application/octet-stream;
|
||||||
|
sendfile on;
|
||||||
|
|
||||||
|
keepalive_timeout 65;
|
||||||
|
client_max_body_size 2048m;
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 27701;
|
||||||
|
server_name default;
|
||||||
|
|
||||||
|
|
||||||
|
location / {
|
||||||
|
proxy_http_version 1.0;
|
||||||
|
proxy_pass http://127.0.0.1:27702/;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
5. Run ankisyncd:
|
5. Run ankisyncd:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user