An open API service indexing awesome lists of open source software.

https://github.com/metastable-void/getip-rs


https://github.com/metastable-void/getip-rs

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# getip-rs

NOTE: This is intended to be used behind a reverse proxy.

## Nginx

```
location / {
proxy_pass http://127.0.0.1:8080;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Real-Port $remote_port;
proxy_set_header Host $host;
}
```