Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

server location #287

Open
iotexpert opened this issue May 12, 2022 · 0 comments
Open

server location #287

iotexpert opened this issue May 12, 2022 · 0 comments

Comments

@iotexpert
Copy link

By default the /etc/nginx/conf.d/nginx.conf is created for you.... and it looks something like this:
server {
listen 80;
location / {
try_files $uri @app;
}
location @app {
include uwsgi_params;
uwsgi_pass unix:///tmp/uwsgi.sock;
}
}

This is done by the script "entrypoint.sh" ... which has a bunch of "content_server= ... " ending with a print "$content_server" > /etc/nginx/conf.d/nginx

I need to be able to add some more locations to the server definition block... specifically a location that returns a 404 for files that end in json... which needs to look like this:

location ~ (.json$) {return 404;}

I can only think of ugly ways to do this...

  1. I suppose I can modify the entrypoint script... and add do a pull request
  2. I can make a nginx.conf that combines /etc/nginx/nginx.conf and the generated code + my addition

Dont really like either one of my ideas. What is the proper way?

Thanks,
Alan

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant