зеркало из https://github.com/github/docs.git
13 строки
336 B
JavaScript
13 строки
336 B
JavaScript
import { cacheControlFactory } from './cache-control.js'
|
|
|
|
const noCacheControl = cacheControlFactory(0)
|
|
|
|
export default function remoteIp(req, res) {
|
|
noCacheControl(res)
|
|
res.json({
|
|
ip: req.ip,
|
|
'x-forwarded-for': req.headers['x-forwarded-for'] || null,
|
|
'fastly-client-ip': req.headers['fastly-client-ip'] || null,
|
|
})
|
|
}
|