Hi,
In our deployment we do have configuration of proxy cache with multiple hard
drives. Because of performance we don't have any RAID on these devices. That
means we have to handle even a situation when drive dies, sometime.
After disk failure of proxy_cache_path device nginx usually starts servi
Hi,
I'm running a reverse proxy with nginx and using certbot for ssl. It's been
working great but recently with an php server installation it's been giving
me problems.
I get access to the index but any other page I get a 404 error from nginx.
404 Not Found
nginx/1.14.0 (Ubuntu)
This is my conf
Solved the problem thanks to Francis Daly who pointed me to the right
direction:
https://forum.vuejs.org/t/vue-with-nginx/26843/3
// vue.config.js
module.exports = {
// options...
publicPath: '',
devServer: {
host: '0.0.0.0',
port: 8080,
public:
Thank you very much Francis!!! Your indications solved this problem:
with vue.config.js :
// vue.config.js
module.exports = {
// options...
publicPath: '',
devServer: {
host: '0.0.0.0',
port: 8080,
public: 'ggc.world'
},
}
now it works fine:
https://drive.google.com/open?id=1
Hi Reinis,
setting in /etc/nginx/conf.d/default.conf proxy_set_header Host $host in the
location / as follows:
server {
listen 443 ssl http2 default_server;
server_name ggc.world;
ssl_certificate /etc/letsencrypt/live/ggc.world/fullchain.pem; #
managed by Certbot
On Tue, Feb 11, 2020 at 02:28:45PM -0500, MarcoI wrote:
Hi there,
> I "solved" this problem installing the Desktop version of Ubuntu 18.04, as I
> described here:
> https://askubuntu.com/questions/1207812/webapp-fails-with-neterr-connection-refused-with-ubuntu-18-04-4-server-edition
I don't thin
> Hi!,
> I do not understand what should I modify.
The problem is your backend application (I assume node app) which listens on
the 8080 port. While nginx is doing everything right the app responds and
constructs the urls using internal ip and/or 'localhost'.
Depending on what the app uses for