toto
toto copied to clipboard
`article.url` does not include port number
Just as the title says, calling article.url includes the path, the domain, the protocol, but not the port.
Run rackup locally, and open your atom feed. (Presuming rack uses a non-standard port) If you look at the ID (that should be fixed, but w/e) or link, the port is not shown.
Specify port number as part of your website url in config:
#...
set :url, "http://example.com:3000"
#...