Skip to content

Instantly share code, notes, and snippets.

@castironclay
Created April 23, 2021 02:06
Show Gist options
  • Save castironclay/77e6bbec58862909df541f1d727bdd25 to your computer and use it in GitHub Desktop.
Save castironclay/77e6bbec58862909df541f1d727bdd25 to your computer and use it in GitHub Desktop.
# Set viewport cookie with js
<script type="text/javascript">
document.cookie = 'viewport=' + screen.width;
</script>
# Nginx location
location / {
# Proxy only Iphone X
if ($cookie_viewport ~ "375") {
proxy_pass 127.0.0.1:8443;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment