You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have reverse proxy setup for a subfolder to a wordpress blog, which is hosted on an ec2 server. Ultimate goal "https://www.example.com/blog/" The problem is the parent site is in https, so for transparency I've added openssl to the lamp stack(ec2). The problem is that the wordpress blog is not showing any assets/css.
routes:
#wordpress
match "/blog" => redirect("/blog/")
config.ru
use Rack::ReverseProxy do
reverse_proxy /^/blog(/.*)$/, 'http://xx.xx.xx.x$1', opts={:preserve_host => true}
end
xx.xx.xx.x = ip to the ec2 box with wordpress installed.
The text was updated successfully, but these errors were encountered:
Hi,
I have reverse proxy setup for a subfolder to a wordpress blog, which is hosted on an ec2 server. Ultimate goal "https://www.example.com/blog/" The problem is the parent site is in https, so for transparency I've added openssl to the lamp stack(ec2). The problem is that the wordpress blog is not showing any assets/css.
routes:
#wordpress
match "/blog" => redirect("/blog/")
config.ru
use Rack::ReverseProxy do
reverse_proxy /^/blog(/.*)$/, 'http://xx.xx.xx.x$1', opts={:preserve_host => true}
end
xx.xx.xx.x = ip to the ec2 box with wordpress installed.
The text was updated successfully, but these errors were encountered: