Advertisement
Guest User

Untitled

a guest
Dec 16th, 2013
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. #nginx web server config file for GTA Online tunables.json modification
  2. #for ps3, place modded tunables.json in /ps3/titles/gta5/ps3/
  3. #for xbox, place modded tunables.json in /ps3/titles/gta5/xbox360/
  4.  
  5. server {
  6. listen 80;
  7. server_name prod.ros.cloud.rockstargames.com prod.cloud.rockstargames.com;
  8. location / {
  9. proxy_pass http://prod.cloud.rockstargames.com/;
  10. expires epoch;
  11. proxy_set_header host $http_host;
  12. }
  13. location /titles/gta5/ps3/tunables.json {expires epoch;}
  14. location /titles/gta5/xbox360/tunables.json {expires epoch;}
  15.  
  16. root /ps3;
  17. autoindex on;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement