http - nginx redirecting all subdomains (when it shouldn't) - Stack Overflow (https://cdn.sstatic.net/Sites/stackoverflow/Img/apple-touch-icon.png?v=c78bd457575a) (Stack Overflow) (https://stackoverflow.com/opensearch.xml) (https://stackoverflow.com/questions/71673593/nginx-redirecting-all-subdomains-when-it-shouldnt) (Feed for question 'nginx redirecting all subdomains (when it shouldn't)') (https://stackoverflow.com/feeds/question/71673593) (site logo) By clicking “Sign up”, you agree to our (https://stackoverflow.com/legal/terms-of-service/public) terms of service and acknowledge you have read our (https://stackoverflow.com/legal/privacy-policy) privacy policy . Sign up with Google Sign up with GitHub OR Email Password (8+ characters (at least 1 letter & 1 number)) Sign up Already have an account? (https://stackoverflow.com/users/login) Log in Skip to main content (https://stackoverflow.com/) Stack Overflow (https://stackoverflow.co/) About Products (https://stackoverflow.co/teams/) For Teams (Search…) (Click to show search) (https://stackoverflow.com/users/login?ssrc=head&returnurl=https%3a%2f%2fstackoverflow.com%2fquestions%2f71673593%2fnginx-redirecting-all-subdomains-when-it-shouldnt) Log in (https://stackoverflow.com/users/signup?ssrc=head&returnurl=https%3a%2f%2fstackoverflow.com%2fquestions%2f71673593%2fnginx-redirecting-all-subdomains-when-it-shouldnt) Sign up Let's set up your homepage Select a few topics you're interested in: python javascript c# reactjs java android html flutter c++ node.js typescript css r php angular next.js spring-boot machine-learning sql excel ios azure docker Or search from our full list: (Search) Next You’ll be prompted to create an account to view your personalized homepage. (https://stackoverflow.com/) Home (https://stackoverflow.com/questions) Questions (https://stackoverflow.ai/) AI Assist Labs (https://stackoverflow.com/tags) Tags (https://stackoverflow.com/beta/challenges) Challenges (https://chat.stackoverflow.com/rooms/259507/stack-overflow-lobby) Chat (https://stackoverflow.blog/contributed?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=so-blog&utm_content=experiment-articles) Articles (https://stackoverflow.com/users) Users (https://stackoverflow.com/jobs?source=so-left-nav) Jobs (https://stackoverflow.com/jobs/companies?so_medium=stackoverflow&so_source=SiteNav) Companies Collectives Communities for your favorite technologies. (https://stackoverflow.com/collectives-all) Explore all Collectives Teams Ask questions, find answers and collaborate at work with Stack Overflow for Teams. (https://stackoverflowteams.com/teams/create/free/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=side-bar&utm_content=explore-teams) Try Teams for free (https://stackoverflow.co/teams/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=side-bar&utm_content=explore-teams) Explore Teams (Illustration of upvote icon after it is clicked) Hang on, you can't upvote just yet. You'll need to complete a few actions and gain 15 reputation points before being able to upvote. Upvoting indicates when questions and answers are useful. (https://stackoverflow.com/help/whats-reputation) What's reputation and how do I get it? Instead, you can save this post to reference later. Save this post for later Not now (Illustration of upvote icon after it is clicked) Thanks for your vote! You now have 5 free votes weekly. Free votescount toward the total vote score does not give reputation to the author Continue to help good content that is interesting, well-researched, and useful, rise to the top! To gain full voting privileges, (https://stackoverflow.com/help/whats-reputation) earn reputation . Got it! Go to help center to learn more (https://cdn.sstatic.net/Sites/stackoverflow/Img/apple-touch-icon.png?v=c78bd457575a) (https://stackoverflow.com/questions/71673593/nginx-redirecting-all-subdomains-when-it-shouldnt) nginx redirecting all subdomains (when it shouldn't) (https://stackoverflow.com/questions/ask) Ask Question (2022-03-30 08:00:39Z) Asked 3 years, 6 months ago Modified (https://stackoverflow.com/questions/71673593/nginx-redirecting-all-subdomains-when-it-shouldnt?lastactivity) (2024-08-27 08:23:49Z) 1 year, 1 month ago (Viewed 5,196 times) Viewed 5k times This question shows research effort; it is useful and clear 2 (This question does not show any research effort; it is unclear or not useful) Save this question. (https://stackoverflow.com/posts/71673593/timeline) Show activity on this post. I have an nginx server running. I want it to redirect http://www.example.com to https://www.example.com , but not touch any other subdomains like http://foo.example.com . For some reason, no matter what I add in the subdomain, it still gets rerouted. My webpage shows on (http://www.example.com/) www.example.com (as it should), but also on foo.example.com and example.com (as it shouldn't) This is my example.com config file: server { listen 80; server_name www.example.com; # For debug add_header X-debug-message "listen:80, server_name:www.example.com, redirect:https://$host$request_uri" always; # Riderect return 301 https://$host$request_uri; } server { listen 443 ssl; server_name www.example.com; # For debug add_header X-debug-message "listen:443, server_name:www.example.com, redirected:https://$host$request_uri" always; # SSL ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem; include /etc/letsencrypt/options-ssl-nginx.conf; ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; root /var/www/example.com; # Redirect location / { proxy_pass http://192.168.1.224:80; } } Going to www.example.com shows me my webpage as expected. But going to foo.example.com also gives me my webpage - which it shouldn't. example.com also gives me the webpage. Opening www.example.com in my browser, I see the following http header (as expected): X-debug-message: DEBUG: listen:443, server_name:www.example.com, redirected:https://www.example.com/ Opening foo.example.com in my browser, I see the following http header (not as expected): X-debug-message: DEBUG: listen:443, server_name:www.example.com, redirected:https://foo.example.com/ How can I make my nginx only redirect www.example.com ? (https://stackoverflow.com/questions/tagged/http) (show questions tagged 'http') http (https://stackoverflow.com/questions/tagged/nginx) (show questions tagged 'nginx') nginx (https://stackoverflow.com/questions/tagged/network-programming) (show questions tagged 'network-programming') network-programming (https://stackoverflow.com/questions/tagged/https) (show questions tagged 'https') https (https://stackoverflow.com/questions/tagged/nginx-reverse-proxy) (show questions tagged 'nginx-reverse-proxy') nginx-reverse-proxy (https://stackoverflow.com/q/71673593) (Short permalink to this question) Share (https://stackoverflow.com/posts/71673593/edit) Improve this question Follow Follow this question to receive notifications asked (2022-03-30 08:00:39Z) Mar 30, 2022 at 8:00 (https://stackoverflow.com/users/13067276/chr1scon) (Chr1sCon's user avatar) (https://stackoverflow.com/users/13067276/chr1scon) Chr1sCon Chr1sCon (reputation score) 121 (2 silver badges) 2 2 silver badges (10 bronze badges) 10 10 bronze badges 1 (number of 'useful comment' votes received) 1 You do not have a server block for foo.example.com or example.com , so the only thing that Nginx can do is process the request using the server blocks you have provided. See (http://nginx.org/en/docs/http/request_processing.html) how Nginx processes a request . Richard Smith – (https://stackoverflow.com/users/4862445/richard-smith) (50,232 reputation) Richard Smith 2022-03-30 08:46:41 +00:00 Commented (2022-03-30 08:46:41Z, License: CC BY-SA 4.0) Mar 30, 2022 at 8:46 (Use comments to ask for more information or suggest improvements. Avoid answering questions in comments.) Add a comment | (Expand to show all comments on this post) 4 Answers 4 Sorted by: (https://stackoverflow.com/questions/71673593/nginx-redirecting-all-subdomains-when-it-shouldnt?answertab=scoredesc#tab-top) Reset to default (scoredesc) Highest score (default) (trending) Trending (recent votes count more) (modifieddesc) Date modified (newest first) (createdasc) Date created (oldest first) This answer is useful 2 (This answer is not useful) Save this answer. (Loading when this answer was accepted…) (https://stackoverflow.com/posts/71682406/timeline) Show activity on this post. Ensure that the dns record for foo.yourdomain.com is actually created with dns provider Create a second server block for the subdomain 'foo.example.com' otherwise all request to port 80 will be redirected to available server block, which in your case (http://www.example.com/) www.example.com - the server block should look like this: server { server_name foo.example.com; location / { root path/to/foo/index.html; index index.html index.htm; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade'; proxy_set_header Host $host; proxy_cache_bypass $http_upgrade; try_files $uri $uri/ /index.html; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem; # n managed by Certbot ssl_certificate_key /etc/letsencrypt/live/nextoma.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot } Add ssl certificate to the foo.example.com with the command: certbot --nginx -d foo.example.com Restart nginx and recheck foo.example.com again (https://stackoverflow.com/a/71682406) (Short permalink to this answer) Share (https://stackoverflow.com/posts/71682406/edit) Improve this answer Follow Follow this answer to receive notifications answered (2022-03-30 18:35:23Z) Mar 30, 2022 at 18:35 (https://stackoverflow.com/users/8935972/yaxx) (yaxx's user avatar) (https://stackoverflow.com/users/8935972/yaxx) yaxx yaxx (reputation score) 655 (2 gold badges) 2 2 gold badges (9 silver badges) 9 9 silver badges (24 bronze badges) 24 24 bronze badges Sign up to request clarification or add additional context in comments. Comments Add a comment This answer is useful 2 (This answer is not useful) Save this answer. (Loading when this answer was accepted…) (https://stackoverflow.com/posts/71723451/timeline) Show activity on this post. Thank you for all the comments! For other readers, and future reference, this is now my enlightened understanding. nginx treats the first entry in it's enabled-sites conf as a default route. Thus, the first entry server { listen 80; server_name example.net www.example.net; ... } is in fact treated as server { listen 80 default_server; server_name example.net www.example.net; ... } So, my mistake, was to add *.example.com -> MyIP to my DNS, and assuming nginx would just 404 all routes I didn't explicitly define. When in fact, it looks for a route that matches foo.example.com , and if it doesn't, routes it to the default route. So, I now changed my DNS to explicitly handle all subdomains I want routed, and I list all of them explicitly in nginx. Now - how I achieve my original plan - to just route *.example.com to my IP, and have nginx 404 all requests except the ones I excplicitly define - I still don't understand. Explicitly routing all subdomains in the DNS is a bit less flexible, as I need to update the DNS and wait for the change to propagate if I want to test a new service internally. But, I guess that is fine for now. (https://stackoverflow.com/a/71723451) (Short permalink to this answer) Share (https://stackoverflow.com/posts/71723451/edit) Improve this answer Follow Follow this answer to receive notifications answered (2022-04-03 06:14:43Z) Apr 3, 2022 at 6:14 (https://stackoverflow.com/users/13067276/chr1scon) (Chr1sCon's user avatar) (https://stackoverflow.com/users/13067276/chr1scon) Chr1sCon Chr1sCon (reputation score) 121 (2 silver badges) 2 2 silver badges (10 bronze badges) 10 10 bronze badges 1 Comment Add a comment (https://stackoverflow.com/users/14275275/victor-hugo) Victor Hugo (https://stackoverflow.com/users/14275275/victor-hugo) Victor Hugo (2024-08-22T12:54:44.27Z) Over a year ago Did you add a DNS rule to accept all subdomains (e.g., *.example.com) and configure Nginx to handle the subdomains, where any non-configured subdomains automatically redirect to a 404 page? 2024-08-22T12:54:44.27Z+00:00 0 Reply This answer is useful 2 (This answer is not useful) Save this answer. (Loading when this answer was accepted…) (https://stackoverflow.com/posts/72049112/timeline) Show activity on this post. You need to make the first entry listen on 443 for HTTPS and server name _ and return 404. server { listen 443 ssl; server_name _; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_ciphers HIGH:!aNULL:!MD5; ssl_certificate /etc/nginx/certs/nginx-selfsigned.crt; ssl_certificate_key /etc/nginx/certs/nginx-selfsigned.key; location / { return 404; } } By having the typical HTTP to HTTPS redirect in the file (I have it as the last entry): server { listen 80 default_server; server_name _; return 301 https://$host$request_uri; } Then all HTTP requests get converted to the HTTPS counterparts. Then, if you request a subdomain that has not been configured in the NGINX configuration file, it will default to the first entry which returns a 404. All other configured subdomains, and the root domain, if you have that as an entry, will resolve correctly. Also you can keep your wildcard DNS, which is more practical than having to add each subdomain as an entry, as you point out in your answer. (https://stackoverflow.com/a/72049112) (Short permalink to this answer) Share (https://stackoverflow.com/posts/72049112/edit) Improve this answer Follow Follow this answer to receive notifications answered (2022-04-28 19:17:49Z) Apr 28, 2022 at 19:17 (https://stackoverflow.com/users/18979783/sdlsep) (sdlsep's user avatar) (https://stackoverflow.com/users/18979783/sdlsep) sdlsep sdlsep (reputation score) 21 (1 bronze badge) 1 1 bronze badge Comments Add a comment This answer is useful 1 (This answer is not useful) Save this answer. (Loading when this answer was accepted…) (https://stackoverflow.com/posts/78831905/timeline) Show activity on this post. To route all the subdomains but the specified ones to 404 you can use: server { listen 443 ssl http2; server_name *.domain.com; location / { return 404; } } (https://stackoverflow.com/a/78831905) (Short permalink to this answer) Share (https://stackoverflow.com/posts/78831905/edit) Improve this answer Follow Follow this answer to receive notifications (https://stackoverflow.com/posts/78831905/revisions) (show all edits to this post) edited (2024-08-27 08:23:49Z) Aug 27, 2024 at 8:23 answered (2024-08-04 19:07:46Z) Aug 4, 2024 at 19:07 (https://stackoverflow.com/users/1549135/atais) (Atais's user avatar) (https://stackoverflow.com/users/1549135/atais) Atais Atais (reputation score 11,355) 11.4k (7 gold badges) 7 7 gold badges (75 silver badges) 75 75 silver badges (115 bronze badges) 115 115 bronze badges Comments Add a comment Your Answer Draft saved Draft discarded Sign up or (https://stackoverflow.com/users/login?ssrc=question_page&returnurl=https%3a%2f%2fstackoverflow.com%2fquestions%2f71673593%2fnginx-redirecting-all-subdomains-when-it-shouldnt%23new-answer) log in Sign up using Google Sign up using Email and Password Submit Post as a guest Name Email Required, but never shown Post as a guest Name () () Email Required, but never shown () () Post Your Answer Discard By clicking “Post Your Answer”, you agree to our (https://stackoverflow.com/legal/terms-of-service/public) terms of service and acknowledge you have read our (https://stackoverflow.com/legal/privacy-policy) privacy policy . Start asking to get answers Find the answer to your question by asking. (https://stackoverflow.com/questions/ask) Ask question Explore related questions (https://stackoverflow.com/questions/tagged/http) (show questions tagged 'http') http (https://stackoverflow.com/questions/tagged/nginx) (show questions tagged 'nginx') nginx (https://stackoverflow.com/questions/tagged/network-programming) (show questions tagged 'network-programming') network-programming (https://stackoverflow.com/questions/tagged/https) (show questions tagged 'https') https (https://stackoverflow.com/questions/tagged/nginx-reverse-proxy) (show questions tagged 'nginx-reverse-proxy') nginx-reverse-proxy See similar questions with these tags. The Overflow Blog (https://stackoverflow.blog/2025/10/03/one-is-not-the-loneliest-number-for-api-calls/?cb=1) One is not the loneliest number for API calls Featured on Meta (Meta Stack Exchange) (https://meta.stackexchange.com/questions/412667/spevacus-has-joined-us-as-a-community-manager?cb=1) Spevacus has joined us as a Community Manager (Meta Stack Exchange) (https://meta.stackexchange.com/questions/412705/introducing-a-new-proactive-anti-spam-measure?cb=1) Introducing a new proactive anti-spam measure (Meta Stack Overflow) (https://meta.stackoverflow.com/questions/421831/policy-generative-ai-e-g-chatgpt-is-banned?cb=1) Policy: Generative AI (e.g., ChatGPT) is banned (Meta Stack Overflow) (https://meta.stackoverflow.com/questions/435121/exploring-new-types-of-questions-on-stack-overflow?cb=1) Exploring new types of questions on Stack Overflow Community activity Last 1 hr Users online activity 7833 users online Number of questions asked 14 questions Number of questions that received an answer 10 answers Number of comments posted 41 comments Number of upvotes on posts 177 upvotes Popular tags Popular tags (https://stackoverflow.com/questions/tagged/android) android (https://stackoverflow.com/questions/tagged/java) java (https://stackoverflow.com/questions/tagged/c#) c# (https://stackoverflow.com/questions/tagged/c) c (https://stackoverflow.com/questions/tagged/python) python (https://stackoverflow.com/questions/tagged/javascript) javascript Popular unanswered question Popular unanswered question (https://stackoverflow.com/questions/79782082) Angular guard issue (https://stackoverflow.com/questions/tagged/angular) angular (https://stackoverflow.com/questions/tagged/jquery-cookie) jquery-cookie (https://stackoverflow.com/questions/tagged/ngx-cookie-service) ngx-cookie-service (https://stackoverflow.com/users/21684478) (User avatar) (https://stackoverflow.com/users/21684478) Hammad sheikh 1 (Friday, October 3, 2025 at 6:59:29 PM UTC) 2 days ago Related (https://stackoverflow.com/questions/19558507/ip-address-gets-redirected-to-sub-domain-instead-of-domain?rq=3) (Question score (upvotes - downvotes)) 0 (https://stackoverflow.com/questions/19558507/ip-address-gets-redirected-to-sub-domain-instead-of-domain?rq=3) IP Address gets redirected to Sub-domain instead of Domain (https://stackoverflow.com/questions/20767548/nginx-subdomain-ssl-redirect-redirects-top-level-domain?rq=3) (Question score (upvotes - downvotes)) 1 (https://stackoverflow.com/questions/20767548/nginx-subdomain-ssl-redirect-redirects-top-level-domain?rq=3) nginx subdomain ssl redirect redirects top level domain (https://stackoverflow.com/questions/20768110/nginx-subdomain-redirect-catches-other-subdomains?rq=3) (Question score (upvotes - downvotes)) 0 (https://stackoverflow.com/questions/20768110/nginx-subdomain-redirect-catches-other-subdomains?rq=3) nginx subdomain redirect catches other subdomains (https://stackoverflow.com/questions/21076500/nginx-reverse-proxy-redirecting-to-wrong-domain?rq=3) (Question score (upvotes - downvotes)) 1 (https://stackoverflow.com/questions/21076500/nginx-reverse-proxy-redirecting-to-wrong-domain?rq=3) nginx reverse proxy redirecting to wrong domain (https://stackoverflow.com/questions/39459447/multiple-subdomains-keep-redirecting-to-root-path?rq=3) (Question score (upvotes - downvotes)) 3 (https://stackoverflow.com/questions/39459447/multiple-subdomains-keep-redirecting-to-root-path?rq=3) Multiple subdomains keep redirecting to root path (https://stackoverflow.com/questions/48409511/nginx-not-redirecting-to-https?rq=3) (Question score (upvotes - downvotes)) 2 (https://stackoverflow.com/questions/48409511/nginx-not-redirecting-to-https?rq=3) Nginx not redirecting to https (https://stackoverflow.com/questions/52586383/why-does-this-nginx-server-redirect-to-a-wrong-domain?rq=3) (Question score (upvotes - downvotes)) 7 (https://stackoverflow.com/questions/52586383/why-does-this-nginx-server-redirect-to-a-wrong-domain?rq=3) Why does this nginx server redirect to a wrong domain? (https://stackoverflow.com/questions/53743337/nginx-redirecting-non-secure-subdomain-to-main-domain?rq=3) (Question score (upvotes - downvotes)) 0 (https://stackoverflow.com/questions/53743337/nginx-redirecting-non-secure-subdomain-to-main-domain?rq=3) NGINX redirecting non secure subdomain to main domain (https://stackoverflow.com/questions/54816576/nginx-top-domain-redirects-to-subdomain?rq=3) (Question score (upvotes - downvotes)) 0 (https://stackoverflow.com/questions/54816576/nginx-top-domain-redirects-to-subdomain?rq=3) nginx top-domain redirects to subdomain (https://stackoverflow.com/questions/56948106/nginx-main-domain-requests-getting-forwarded-to-subdomain?rq=3) (Question score (upvotes - downvotes)) 2 (https://stackoverflow.com/questions/56948106/nginx-main-domain-requests-getting-forwarded-to-subdomain?rq=3) Nginx main domain requests getting forwarded to subdomain (https://stackexchange.com/questions?tab=hot) Hot Network Questions (Puzzling Stack Exchange) (https://puzzling.stackexchange.com/questions/133447/mystery-graph-whats-the-equation) Mystery graph. What's the equation? (Super User) (https://superuser.com/questions/1926130/why-has-google-authenticator-chrome-extension-suddenly-lost-all-accounts-how-to) Why has Google Authenticator Chrome extension suddenly lost all accounts? How to recover? (Ask Ubuntu) (https://askubuntu.com/questions/1556907/netcat-does-not-give-error-when-trying-on-listen-on-same-port-twice) netcat does not give error when trying on listen on same port twice (The Great Outdoors Stack Exchange) (https://outdoors.stackexchange.com/questions/30319/how-can-i-plug-the-drainage-holes-at-the-bottom-of-a-backpack) How can I plug the drainage holes at the bottom of a backpack? (Christianity Stack Exchange) (https://christianity.stackexchange.com/questions/108921/jesus-words-outside-of-gospel) Jesus' words outside of Gospel? (Hinduism Stack Exchange) (https://hinduism.stackexchange.com/questions/65597/for-a-hindu-saint-with-spiritual-powers-how-do-they-know-when-to-help-or-save-a) For a Hindu saint with spiritual powers, how do they know when to help or save a normal person ? Who is going through bad things because of bad karma? (German Language Stack Exchange) (https://german.stackexchange.com/questions/80749/do-the-germans-use-the-phrase-die-scheinende-sonne) Do the Germans use the phrase "die scheinende Sonne"? (Arqade) (https://gaming.stackexchange.com/questions/413592/what-does-resisted-mean) What does "resisted" mean? (Blender Stack Exchange) (https://blender.stackexchange.com/questions/339345/how-to-align-phones-in-a-sphere-in-blender-geo-nodes) How to align "phones" in a sphere in blender geo nodes (Puzzling Stack Exchange) (https://puzzling.stackexchange.com/questions/133467/the-question-contains-the-answer-literally) The question contains the answer (literally) (Super User) (https://superuser.com/questions/1925966/how-to-get-notepad-s-open-dialog-box-to-show-every-file-in-a-folder-by-default) How to get Notepad’s Open dialog box to show every file in a folder by default, instead of only “.txt” files? (History Stack Exchange) (https://history.stackexchange.com/questions/79485/when-did-people-start-using-open-bookshelves-or-bookcases-without-doors) When did people start using open bookshelves or bookcases without doors? (Electrical Engineering Stack Exchange) (https://electronics.stackexchange.com/questions/756481/is-it-safe-to-have-power-lines-gently-squeezed-against-bms-module) Is it safe to have power lines gently squeezed against BMS module? (MathOverflow) (https://mathoverflow.net/questions/501183/additive-equivariant-vector-bundles-on-the-projective-line) Additive-equivariant vector bundles on the projective line (Law Stack Exchange) (https://law.stackexchange.com/questions/111082/when-does-the-dual-sovereignty-doctrine-become-relevant) When does the dual sovereignty doctrine become relevant? (French Language Stack Exchange) (https://french.stackexchange.com/questions/56200/is-shell-the-computing-metaphor-really-translated-coquille-rose) Is "shell" (the computing metaphor) really translated "coquille rose"? (Electrical Engineering Stack Exchange) (https://electronics.stackexchange.com/questions/756463/how-to-calculate-resistors-of-bypass-transistor) How to calculate resistors of bypass transistor? (German Language Stack Exchange) (https://german.stackexchange.com/questions/80754/what-is-the-german-word-for-dashboard-in-web-context) What is the German word for "Dashboard" in web context? (Electrical Engineering Stack Exchange) (https://electronics.stackexchange.com/questions/756497/can-a-22pf-capacitor-kill-you) Can a 22pF capacitor kill you (English Language & Usage Stack Exchange) (https://english.stackexchange.com/questions/633357/use-of-interesting-state-for-pregnancy) Use of 'interesting state' for pregnancy (Arqade) (https://gaming.stackexchange.com/questions/413583/what-do-these-person-icons-that-appear-on-steam-games-on-hover-mean) What do these person icons that appear on Steam games on-hover mean? (Cross Validated) (https://stats.stackexchange.com/questions/670590/delta-method-measurbility-question) Delta method measurbility question (Politics Stack Exchange) (https://politics.stackexchange.com/questions/93686/could-the-republicans-pass-the-continuing-budget-resolution-by-abolishing-the-fi) Could the Republicans pass the continuing budget resolution by abolishing the filibuster? (Christianity Stack Exchange) (https://christianity.stackexchange.com/questions/108927/do-jehovahs-witnesses-claim-a-unique-source-of-divine-authority) Do Jehovah's Witnesses claim a unique source of divine authority? (https://stackoverflow.com/feeds/question/71673593) (Feed of this question and its answers) Question feed Subscribe to RSS Question feed To subscribe to this RSS feed, copy and paste this URL into your RSS reader. (https://stackoverflow.com/feeds/question/71673593) () Why are you flagging this comment? (45) Probable spam. This comment promotes a product, service or website while (https://stackoverflow.com/help/promotion) failing to disclose the author's affiliation . (20) Unfriendly or contains harassment/bigotry/abuse. This comment is unkind, insulting or attacks another person or group. Learn more in our (https://stackoverflow.com/conduct/abusive-behavior) Code of Conduct . (39) Not needed. This comment is not relevant to the post. (19) Something else. A problem not listed above. Try to be as specific as possible. Flag comment Cancel You have 0 flags left today (GPP Locator) (https://stackoverflow.com/) (https://stackoverflow.com/) Stack Overflow (https://stackoverflow.com/questions) Questions (https://stackoverflow.com/help) Help (https://chat.stackoverflow.com/?tab=explore) Chat (https://stackoverflow.co/) Products (https://stackoverflow.co/teams/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=footer&utm_content=teams) Teams (https://stackoverflow.co/advertising/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=footer&utm_content=advertising) Advertising (https://stackoverflow.co/advertising/employer-branding/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=footer&utm_content=talent) Talent (https://stackoverflow.co/) Company (https://stackoverflow.co/) About (https://stackoverflow.co/company/press/) Press (https://stackoverflow.co/company/work-here/) Work Here (https://stackoverflow.com/legal) Legal (https://stackoverflow.com/legal/privacy-policy) Privacy Policy (https://stackoverflow.com/legal/terms-of-service/public) Terms of Service (https://stackoverflow.com/contact) Contact Us Your Privacy Choices (https://policies.stackoverflow.co/stack-overflow/cookie-policy) Cookie Policy (https://stackexchange.com/) Stack Exchange Network (https://stackexchange.com/sites#technology) Technology (https://stackexchange.com/sites#culturerecreation) Culture & recreation (https://stackexchange.com/sites#lifearts) Life & arts (https://stackexchange.com/sites#science) Science (https://stackexchange.com/sites#professional) Professional (https://stackexchange.com/sites#business) Business (https://api.stackexchange.com/) API (https://data.stackexchange.com/) Data (https://stackoverflow.blog/?blb=1) Blog (https://www.facebook.com/officialstackoverflow/) Facebook (https://twitter.com/stackoverflow) Twitter (https://linkedin.com/company/stack-overflow) LinkedIn (https://www.instagram.com/thestackoverflow) Instagram Site design / logo © 2025 Stack Exchange Inc; user contributions licensed under (https://stackoverflow.com/help/licensing) CC BY-SA . rev 2025.10.2.34811 By continuing to use this website, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our (https://policies.stackoverflow.co/stack-overflow/cookie-policy/) Cookie Policy . By exiting this window, default cookies will be accepted. To reject cookies, select an option from below. Necessary cookies only Customize settings