Skip to content

Wrong HTTP content-type #8

@krmax44

Description

@krmax44

Please set the content-type header to either text/xml or application/xml instead of text/html, as many podcast apps will only take valid xml files.

An example snippet on how to do it:

var http = require('http');

http.createServer(function (req, res) {
res.setHeader("content-type", "text/xml");
}).listen(80);

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions