Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Selfish settings
- server {
- listen 127.0.0.1:80;
- server_name localhost;
- if_modified_since off;
- add_header Last-Modified "";
- access_log /var/log/nginx/localhost.access_log main;
- error_log /var/log/nginx/localhost.error_log info;
- root /home/alexey/projects/frumatic/mls/frontend/public_html;
- location /call {
- proxy_pass http://192.168.0.1:9003;
- proxy_set_header X-Real-IP $remote_addr;
- }
- location /js/ {
- try_files $uri $uri;
- }
- location /css/ {
- try_files $uri $uri;
- }
- location ~* {
- try_files /index.html $uri;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement