I’m trying to run an instance of news.arc (that’s the HackerNews board), but I can’t quite decode if I’m supposed to use a rewrite rule, a redirect, a proxy_pass, an upstream, or some sort of magical mystical incantation.
I’m pretty sure that SETT is being reverse proxied through Nginx the same way, and I’d appreciate any help offered.
Here’s where it’s currently running: http://blaireaug.com:8080/
But I’d like it to be at news.blaireaug.com
Here’s the text from my sites-available/www file. What’s the right config?
upstream news {
server news.blaireaug.com weight=5;
server blaireaug.com:8080 max_fails=3 fail_timeout=30s;
}
server {
listen http://127.0.0.1:8080;
server_name news.blaireaug.com;
location / {
proxy_pass http://127.0.0.1:8080;}
}
location /news/ {
rewrite /news/ (.*) /$1 break;
rewrite ^/news$ /news/ permanent;
proxy_pass http://localhost:8080/;
proxy_redirect / /news/;
}
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Is everything running locally? Are you trying to have two applications on one domain? I’m not sure how you have everything set up as it’s a bit unclear.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.